unit_testing/output/
mod.rs

1pub const ASSERT_MATCH: &str = "The value match the regex";
2pub const ASSERT_SHOULD_MATCH: &str = "The value should be match the regex";
3pub const ASSERT_BEGIN: &str = "The data begin with the expected value";
4pub const ASSERT_FAIL: &str = "The callback has a failure exit status code";
5pub const ASSERT_SUCCESS: &str = "The callback has a success exit status code";
6pub const ASSERT_SHOULD_BE_SUCCESS: &str = "The callback should have a success exit status code";
7pub const ASSERT_SHOULD_BE_FAIL: &str = "The callback should be have a failure exit status code";
8pub const ASSERT_FINNISH: &str = "The data finnish by the expected value";
9pub const ASSERT_LENGTH_EQUALS: &str = "The data len math the expected size";
10pub const ASSERT_LENGTH_UN0EQUALS: &str = "The data len don't math the expected size";
11pub const ASSERT_SHOULD_BE_BEGIN: &str =
12    "The data don't begin with the expected value and should be begin with";
13pub const ASSERT_PANIC: &str = "The callback panic";
14pub const ASSERT_NOT_PANIC: &str = "The callback don't panic";
15pub const ASSERT_SHOULD_BE_FINNISH: &str =
16    "The data don't finnish with the value and she should be";
17pub const ASSERT_OK: &str = "The value match true";
18pub const ASSERT_SHOULD_BE_OK: &str = "The value match false and should be match true";
19pub const ASSERT_KO: &str = "The value match false";
20pub const ASSERT_SHOULD_BE_KO: &str = "The value match true and should be match false";
21pub const ASSERT_EQUALS: &str = "The values are equals";
22pub const ASSERT_SHOULD_BE_EQUALS: &str = "The values match inequality but should be equals";
23pub const ASSERT_UNEQUALS: &str = "The values are unequals";
24pub const ASSERT_SHOULD_BE_UNEQUALS: &str = "The values are equals but values should be unequals";
25pub const ASSERT_BETWEEN: &str = "The value are between min and max";
26pub const ASSERT_SHOULD_BE_BETWEEN: &str =
27    "The value are not between min and max but should be between the values";
28pub const ASSERT_INFERIOR: &str = "The value is inferior to the maximum value";
29pub const ASSERT_SHOULD_BE_INFERIOR: &str = "The value is inferior to the maximum value";
30pub const ASSERT_SUPERIOR: &str = "The value is superior to the minimum value";
31pub const ASSERT_SHOULD_BE_SUPERIOR: &str =
32    "The value is inferior to the minimum value and should be superior";
33
34pub const ASSERT_EMPTY: &str = "The value is empty";
35pub const ASSERT_SHOULD_BE_EMPTY: &str = "The value is not empty but should be empty";
36
37pub const ASSERT_EXISTS: &str = "The path exists";
38pub const ASSERT_SHOULD_BE_EXISTS: &str = "The path not exist but it's should be exists";
39
40pub const ASSERT_CONTAINS: &str = "The value contains the expected value";
41pub const ASSERT_SHOULD_CONTAINS: &str = "The value has not been founded";
42pub const ASSERT_IS_EXECUTABLE: &str = "The file is executable";
43pub const ASSERT_SHOULD_BE_EXECUTABLE: &str = "The file is not an executable but it's should be";
44pub const ASSERT_THEORY_IS_TRUE: &str = "The theory is true";
45pub const ASSERT_THEORY_SHOULD_BE_TRUE: &str =
46    "The theory match false but she should be match true";
47pub const ASSERT_THEORY_IS_FALSE: &str = "The theory is false";
48pub const ASSERT_THEORY_SHOULD_BE_FALSE: &str = "The theory match true she should be match false";
49pub const ASSERT_IS_NOT_EXECUTABLE: &str = "The file is not an executable";
50pub const ASSERT_SHOULD_BE_NOT_EXECUTABLE: &str = "The file is executable and should be not";
51pub const ASSERT_NOT_EXISTS: &str = "The path not exists";
52pub const ASSERT_SHOULD_BE_NOT_EXISTS: &str = "The path exists and should be not";
53pub const ASSERT_NOT_CONTAINS: &str = "The data don't contains the value";
54pub const ASSERT_SHOULD_BE_NOT_CONTAINS: &str =
55    "The value has been founded in data and should be not";
56pub const ASSERT_NOT_EMPTY: &str = "The value is not empty";
57pub const ASSERT_SHOULD_BE_NOT_EMPTY: &str = "The value is empty and should be not";
58pub const ASSERT_PROGRESS_TIME: u64 = 20;
59pub const DISABLE_PROGRESS_TIME: u64 = 0;
60pub const IS_MATCH: &str = "The value match the regex";
61pub const IS_NOT_MATCH: &str = "The value no match the regex";
62pub const IS_FAIL: &str = "The callback has a failure exit status code";
63pub const IS_NOT_FAIL: &str = "The callback has not a failure exit status";
64pub const IS_SUCCESS: &str = "The callback has a success exit status code";
65pub const IS_NOT_SUCCESS: &str = "The callback has not a success exit status code";
66pub const IS_BEGIN: &str = "The value begin with the expected value";
67pub const IS_FINNISH: &str = "The value finnish by the expected value";
68pub const IS_NOT_FINNISH: &str = "The value don't finnish by the expected value";
69pub const IS_NOT_BEGIN: &str = "The value not begin with the expected value";
70pub const IS_OK: &str = "The test match true";
71pub const IS_KO: &str = "The test match false";
72pub const IS_EQUALS: &str = "The values are equals";
73pub const IS_UNEQUALS: &str = "The values are unequals";
74pub const IS_BETWEEN: &str = "The value is between min and max";
75pub const IS_NOT_BETWEEN: &str = "The value is not between min and max";
76pub const IS_INFERIOR: &str = "The value is inferior to the maximum value";
77pub const IS_SUPERIOR: &str = "The value is superior to the minimum value";
78pub const IS_EMPTY: &str = "The value is empty";
79pub const IS_NOT_EMPTY: &str = "The value is not empty";
80pub const IS_EXISTS: &str = "The path exists";
81pub const IS_CONTAINS: &str = "The value contains the data";
82pub const IS_NOT_CONTAINS: &str = "The value don't contains the data";
83pub const IS_EXECUTABLE: &str = "The file is executable";
84pub const IS_NOT_EXECUTABLE: &str = "The file is not an executable";
85pub const THEORY_IS_TRUE: &str = "The theory is true";
86pub const THEORY_IS_FALSE: &str = "The theory if false";
87pub const IS_NOT_EXISTS: &str = "The path not exists";
88pub const UNIT_PROGRESS_TIME: u64 = 20;