本文共 1521 字,大约阅读时间需要 5 分钟。
01 package testp; 02 03 public class helloworld { 04 public String SayHelloWorld(String a) 05 { 06 if (a !="") 07 { 08 return a + " helloworld"; 09 } 10 else 11 { 12 return "please input username"; 13 } 14 } 15 } |
1 public class testhelloworld extends TestCase { 2 @Test 3 public void testCase1() throws Exception 4 { 5 helloworld hw = new helloworld(); 6 String rs = hw.SayHelloWorld("elbert"); 7 org.junit.Assert.assertEquals("elbert helloworld", rs); 8 } 9 } |
转载地址:http://fxiyl.baihongyu.com/