1 package junitx.example; 2 3 import junit.framework.Test; 4 import junit.framework.TestCase; 5 6 10 public class ValidationExample 11 extends TestCase { 12 13 public ValidationExample(String name) { 14 super(name); 15 } 16 17 public Test suite() { 18 return null; 19 } 20 21 public void setup() { 22 } 23 24 public void tearDown() { 25 } 26 27 public void atestDummy() { 28 assertTrue(true); 29 } 30 31 } 32 | Popular Tags |