1 4 package test.mockobjects.dynamic; 5 6 import junit.framework.Assert; 7 import junit.textui.TestRunner; 8 9 10 public class ErrorMessageExamples { 11 12 public static void main(String [] args) { 13 TestRunner.main(new String [] { ErrorMessageExamples.class.getName() }); 14 } 16 17 public void testUncalledMethodError() { 18 Assert.assertEquals("should not be equa1", "a", "b"); 19 } 20 } 21 | Popular Tags |