- assertEquals(Object, Object) - Static method in class de.taimos.restutils.RESTAssert
-
assert that objects are equal.
This means they are both null or one.equals(two) returns true
- assertEquals(Object, Object, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that objects are equal.
This means they are both null or one.equals(two) returns true
- assertFalse(boolean) - Static method in class de.taimos.restutils.RESTAssert
-
returns if condition evaluates to false and throws WebApplicationException(422) if it evaluates to true
- assertFalse(boolean, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
returns if condition evaluates to false and throws WebApplicationException if it evaluates to true
- assertInt(String) - Static method in class de.taimos.restutils.RESTAssert
-
assert that string matches [+-]?[0-9]*
- assertInt(String, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that string matches [+-]?[0-9]*
- assertNotEmpty(String) - Static method in class de.taimos.restutils.RESTAssert
-
assert that string is not null nor empty
- assertNotEmpty(String, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that string is not null nor empty
- assertNotEmpty(Collection<?>) - Static method in class de.taimos.restutils.RESTAssert
-
assert that collection is not empty
- assertNotEmpty(Collection<?>, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that collection is not empty
- assertNotNull(Object) - Static method in class de.taimos.restutils.RESTAssert
-
assert that object is not null
- assertNotNull(Object, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that object is not null
- assertPattern(String, String) - Static method in class de.taimos.restutils.RESTAssert
-
assert that string matches the given pattern
- assertPattern(String, String, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that string matches the given pattern
- assertSingleElement(Collection<?>) - Static method in class de.taimos.restutils.RESTAssert
-
assert that collection has one element
- assertSingleElement(Collection<?>, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
assert that collection has one element
- assertTrue(boolean) - Static method in class de.taimos.restutils.RESTAssert
-
returns if condition evaluates to true and throws WebApplicationException(422) if it evaluates to false
- assertTrue(boolean, Response.StatusType) - Static method in class de.taimos.restutils.RESTAssert
-
returns if condition evaluates to true and throws WebApplicationException if it evaluates to false