Shows the stories told by the tests of the project.
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Allows creation without root cause. | Construction | AdaptableExceptionTest: [api][test] |
2 |
|
Allows creation without any type information. | Construction | AdaptableExceptionTest: [api][test] |
3 |
|
Is serializable. | Object-Basics | AdaptableExceptionSerializableTest: [api][test] |
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Rejects null value with null pointer exception. | ArgTest: [api][test] | |
2 |
|
Accepts non null value. | ArgTest: [api][test] | |
3 |
|
Allows to pass an optional message for null check. | ArgTest: [api][test] | |
4 |
|
Allows to pass an optional message for null check even if no exception is thrown. | Coverage | ArgTest: [api][test] |
5 |
|
Rejects blank value with null pointer exception. | ArgTest: [api][test] | |
6 |
|
Accepts non blank value. | ArgTest: [api][test] | |
7 |
|
Allows to pass an optional message for blank check. | ArgTest: [api][test] | |
8 |
|
Allows to pass an optional message for blank check even if no exception is thrown. | Coverage | ArgTest: [api][test] |
9 |
|
Is an utility class. | Coverage | ArgTest: [api][test] |
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Is serializable. | Object-Basics | BlankArgumentExceptionSerializableTest: [api][test] |
2 |
|
Allows to specify the name of the missing argument. | Construction | BlankArgumentExceptionTest: [api][test] |
3 |
|
Allows to leave out the name of the missing argument. | Construction | BlankArgumentExceptionTest: [api][test] |
4 |
|
Provides a noargs constuctor although its use is discouraged. | Construction | BlankArgumentExceptionTest: [api][test] |
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Equals is reflexive. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
2 |
|
Equals is symmetric. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
3 |
|
Equals is transitive. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
4 |
|
Equals is consistent. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
5 |
|
Equals return false on null. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
6 |
|
Equals return false on instance of other type. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
7 |
|
Hash code is consistent. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
8 |
|
Hash code is consistent with equals. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
9 |
|
Hash code produces unequal hash codes for unequal instances. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
10 |
|
To string runs without failure. | Object-Basics | ClassPathContextObjectBasicsTest: [api][test] |
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Reads files from the file system. | ClassPathDirectoryListingTest: [api][test] | |
2 |
|
Reads files from a jar archive. | ClassPathDirectoryListingTest: [api][test] | |
3 |
|
Reads from jar root. | ClassPathDirectoryListingTest: [api][test] | |
4 |
|
Does not allow null as resource path. | Coverage | ClassPathDirectoryListingTest: [api][test] |
5 |
|
Throws illegal argument exception if resource not found on class path. | Coverage | ClassPathDirectoryListingTest: [api][test] |
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Allows to specify the name of the missing argument. | Construction | NullArgumentExceptionTest: [api][test] |
2 |
|
Allows to leave out the name of the missing argument. | Construction | NullArgumentExceptionTest: [api][test] |
3 |
|
Provides a noargs constuctor although its use is discouraged. | Construction | NullArgumentExceptionTest: [api][test] |
4 |
|
Is serializable. | Object-Basics | NullArgumentExceptionSerializableTest: [api][test] |
# | Status | Scenario | Categories | Test Case |
---|---|---|---|---|
1 |
|
Run private constructor for full test coverage. | Coverage | StringFunctionTest: [api][test] |
2 |
|
toHyphenVersion: null -> null | StringFunctionToHyphenVersionTest: [api][test] | |
3 |
|
toHyphenVersion: "" -> "" | StringFunctionToHyphenVersionTest: [api][test] | |
4 |
|
toHyphenVersion: "abc" -> "abc" | StringFunctionToHyphenVersionTest: [api][test] | |
5 |
|
toHyphenVersion: "Abc" -> "abc" | StringFunctionToHyphenVersionTest: [api][test] | |
6 |
|
toHyphenVersion: "a" -> "a" | Technical | StringFunctionToHyphenVersionTest: [api][test] |
7 |
|
toHyphenVersion: "A" -> "a" | Technical | StringFunctionToHyphenVersionTest: [api][test] |
8 |
|
toHyphenVersion: "aBc" -> "a-bc" | StringFunctionToHyphenVersionTest: [api][test] | |
9 |
|
toHyphenVersion: "thisIsACamleCaseExample" -> "this-is-a-camle-case-example" | StringFunctionToHyphenVersionTest: [api][test] | |
10 |
|
chop: null -> null | StringFunctionChopTest: [api][test] | |
11 |
|
chop: "" -> "" | StringFunctionChopTest: [api][test] | |
12 |
|
chop: "x" -> "" | Technical | StringFunctionChopTest: [api][test] |
13 |
|
chop: "abc" -> "ab" | StringFunctionChopTest: [api][test] | |
14 |
|
chop: "abc\r\n" -> "abc" | StringFunctionChopTest: [api][test] | |
15 |
|
chop: "\r" -> "" | Technical | StringFunctionChopTest: [api][test] |
16 |
|
chop: "\r\n" -> "" | Technical | StringFunctionChopTest: [api][test] |
17 |
|
chop: "\n" -> "" | Technical | StringFunctionChopTest: [api][test] |
18 |
|
chop: "ab\n" -> "ab" | Coverage | StringFunctionChopTest: [api][test] |
19 |
|
chop: "\r" -> "" | Technical | StringFunctionChopTest: [api][test] |
20 |
|
isLastChar: null, {any} -> false | StringFunctionIsLastCharTest: [api][test] | |
21 |
|
isLastChar: "", {any} -> false | StringFunctionIsLastCharTest: [api][test] | |
22 |
|
isLastChar: "a", 'a' -> true | StringFunctionIsLastCharTest: [api][test] | |
23 |
|
isLastChar: "a", 'x' -> false | StringFunctionIsLastCharTest: [api][test] | |
24 |
|
isLastChar: "abc", 'c' -> true | StringFunctionIsLastCharTest: [api][test] | |
25 |
|
isLastChar: "abc", 'x' -> false | StringFunctionIsLastCharTest: [api][test] |