Assert that the specified object is not null. @param object the object to check
(final Object object)
| 200 | * @param object the object to check |
| 201 | */ |
| 202 | public static void assertNotNull(final Object object) { |
| 203 | Assertions.assertNotNull(object); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Assert that the specified object is not null. |
no outgoing calls
no test coverage detected