Home | History | Annotate | Download | only in junit

Lines Matching refs:object

38     static public void assertEquals(Object expected, Object actual) {
54 static public void assertNotNull(Object object) {
55 if (object == null) throw new RuntimeException("AssertionFailedError: object was null");
58 static public void assertNull(Object object) {
59 if (object != null) throw new RuntimeException("AssertionFailedError: object was not null");