1 20 21 package cpmake; 22 23 import junit.framework.*; 24 25 public class CPMakeTest extends TestCase 26 { 27 public static Test suite() 28 { 29 return (new TestSuite(CPMakeTest.class)); 30 } 31 32 protected void setUp() 33 { 34 } 35 36 protected void tearDown() 37 { 38 } 39 40 public CPMakeTest() 41 { 42 super("CPMake test suite"); 43 } 44 45 public void testCreateFileList() 46 { 47 } 48 49 public void testArrayToString() 50 { 51 String [] array = new String [] {"one", "two", "three"}; 52 53 assert(CPMake.arrayToString(array).equals("one two three ")); 54 } 55 56 57 58 } 59 | Popular Tags |