Exemplo n.º 1
0
 @Test(expected = IllegalArgumentException.class)
 public void testNotNullNull() throws Exception {
   Assertions.notNull(null, "object");
 }
Exemplo n.º 2
0
 @Test
 public void testNotNull() throws Exception {
   Assertions.notNull(new Object(), "object");
 }