Interface DefaultTestValues
- All Known Implementing Classes:
MappedPojoTest
,PojoTest
public interface DefaultTestValues
Default values to use for testing, so we can have them consistent between the JUnit tests and the actual
source assertions
- Version:
- Alpha v.0.1
- Author:
- Logan Ferree (Tadukoo)
-
Field Summary
Modifier and TypeFieldDescriptionstatic final double
The default first test double to be used: 42.0static final double
The default second test double to be used when you need 2 distinct doubles: 35.4static final String
The default string to use for a key: Teststatic final String
The default second string to use for a key: Derpstatic final String
The default first test string to be used: some_test_stringstatic final String
The default second test string to be used when you need 2 distinct strings: another_test_stringstatic final double
A double to use for returning wrong values: 27.3static final String
The default string to use for a wrong key: Wrongstatic final String
A string to use for returning wrong values: something_wrong
-
Field Details
-
DEFAULT_TEST_STRING
The default first test string to be used: some_test_string- See Also:
-
DEFAULT_TEST_STRING_2
The default second test string to be used when you need 2 distinct strings: another_test_string- See Also:
-
DEFAULT_WRONG_STRING
A string to use for returning wrong values: something_wrong- See Also:
-
DEFAULT_TEST_DOUBLE
static final double DEFAULT_TEST_DOUBLEThe default first test double to be used: 42.0- See Also:
-
DEFAULT_TEST_DOUBLE_2
static final double DEFAULT_TEST_DOUBLE_2The default second test double to be used when you need 2 distinct doubles: 35.4- See Also:
-
DEFAULT_WRONG_DOUBLE
static final double DEFAULT_WRONG_DOUBLEA double to use for returning wrong values: 27.3- See Also:
-
DEFAULT_TEST_KEY
The default string to use for a key: Test- See Also:
-
DEFAULT_TEST_KEY_2
The default second string to use for a key: Derp- See Also:
-
DEFAULT_WRONG_KEY
The default string to use for a wrong key: Wrong- See Also:
-