Package org.opengis.test
Class Assert
- java.lang.Object
-
- org.junit.Assert
-
- org.opengis.test.Assert
-
public class Assert extends org.junit.AssertAssertion methods to be used by GeoAPI tests. This class inherits all assertion methods from the JUnitAssertclass. Consequently, developers can replace the following statement:
byimport static org.junit.Assert.*
if they wish to use the assertion methods defined here in addition of JUnit methods.import static org.opengis.test.Assert.*
- Since:
- 2.2
- Version:
- 3.0
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedAssert()For subclass constructors only.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidassertBetween(java.lang.String message, double minimum, double maximum, double value)Asserts that the given value is between the given range.static voidassertBetween(java.lang.String message, int minimum, int maximum, int value)Asserts that the given value is between the given range.static <T> voidassertBetween(java.lang.String message, java.lang.Comparable<T> minimum, java.lang.Comparable<T> maximum, T value)Asserts that the given value is between the given range.static voidassertContains(java.lang.String message, java.util.Collection<?> collection, java.lang.Object value)Asserts that the given value is contained in the given collection.static voidassertInstanceOf(java.lang.String message, java.lang.Class<?> expectedType, java.lang.Object value)Asserts that the given value is an instance of the given class.static voidassertPositive(java.lang.String message, int value)Asserts that the given integer value is positive, including zero.static voidassertStrictlyPositive(java.lang.String message, int value)Asserts that the given integer value is strictly positive, excluding zero.static voidassertValidRange(java.lang.String message, double minimum, double maximum)Asserts that the given minimum and maximum values make a valid range.static voidassertValidRange(java.lang.String message, int minimum, int maximum)Asserts that the given minimum and maximum values make a valid range.static <T> voidassertValidRange(java.lang.String message, java.lang.Comparable<T> minimum, java.lang.Comparable<T> maximum)Asserts that the given minimum and maximum values make a valid range.-
Methods inherited from class org.junit.Assert
assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotEquals, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertThat, assertThat, assertThrows, assertThrows, assertTrue, assertTrue, fail, fail
-
-
-
-
Method Detail
-
assertInstanceOf
public static void assertInstanceOf(java.lang.String message, java.lang.Class<?> expectedType, java.lang.Object value)Asserts that the given value is an instance of the given class. No tests are performed if the type isnull. If the type is not-null but the value is null, this is considered as a failure.- Parameters:
message- The message to send in case of failure.expectedType- The expected parent class of the value, ornull.value- The value to test, ornull(which is a failure).
-
assertPositive
public static void assertPositive(java.lang.String message, int value)Asserts that the given integer value is positive, including zero.- Parameters:
message- The message to send in case of failure.value- The value to test.
-
assertStrictlyPositive
public static void assertStrictlyPositive(java.lang.String message, int value)Asserts that the given integer value is strictly positive, excluding zero.- Parameters:
message- The message to send in case of failure.value- The value to test.
-
assertValidRange
public static <T> void assertValidRange(java.lang.String message, java.lang.Comparable<T> minimum, java.lang.Comparable<T> maximum)Asserts that the given minimum and maximum values make a valid range. More specifically asserts that if both values are non-null, then the minimum value is not greater than the maximum value.- Type Parameters:
T- The type of values being compared.- Parameters:
message- The message to send in case of failure.minimum- The lower bound of the range to test, ornullif unbounded.maximum- The upper bound of the range to test, ornullif unbounded.
-
assertValidRange
public static void assertValidRange(java.lang.String message, int minimum, int maximum)Asserts that the given minimum and maximum values make a valid range. More specifically asserts that the minimum value is not greater than the maximum value.- Parameters:
message- The message to send in case of failure.minimum- The lower bound of the range to test.maximum- The upper bound of the range to test.
-
assertValidRange
public static void assertValidRange(java.lang.String message, double minimum, double maximum)Asserts that the given minimum and maximum values make a valid range. More specifically asserts that the minimum value is not greater than the maximum value. If one bound is or both bounds are NaN, then the test fails.- Parameters:
message- The message to send in case of failure.minimum- The lower bound of the range to test.maximum- The upper bound of the range to test.
-
assertBetween
public static <T> void assertBetween(java.lang.String message, java.lang.Comparable<T> minimum, java.lang.Comparable<T> maximum, T value)Asserts that the given value is between the given range. This method do not tests the validity of the given range.- Type Parameters:
T- The type of values being compared.- Parameters:
message- The message to send in case of failure.minimum- The lower bound of the range (inclusive), ornullif unbounded.maximum- The upper bound of the range (inclusive), ornullif unbounded.value- The value to test, ornull(which is a failure).
-
assertBetween
public static void assertBetween(java.lang.String message, int minimum, int maximum, int value)Asserts that the given value is between the given range. This method do not tests the validity of the given range.- Parameters:
message- The message to send in case of failure.minimum- The lower bound of the range, inclusive.maximum- The upper bound of the range, inclusive.value- The value to test.
-
assertBetween
public static void assertBetween(java.lang.String message, double minimum, double maximum, double value)Asserts that the given value is between the given range. If the value is NaN, then this test passes silently. This method do not tests the validity of the given range.- Parameters:
message- The message to send in case of failure.minimum- The lower bound of the range, inclusive.maximum- The upper bound of the range, inclusive.value- The value to test.
-
assertContains
public static void assertContains(java.lang.String message, java.util.Collection<?> collection, java.lang.Object value)Asserts that the given value is contained in the given collection. If the given collection is null, then this test passes silently (a null collection is considered as "unknown", not empty). If the given value is null, then the test passes only if the given collection contains the null element.- Parameters:
message- The message to send in case of failure.collection- The collection where to look for inclusion, ornull.value- The value to test for inclusion.
-
-