标签:style blog color os 使用 sp for on div
1 import org.junit.Test;
2 public class TestPerson{
3
4 @Test
5 public void TestRun(){
6 Person p = new Person();
7 p.run();
8 }
9
10 @Test
11 public void TestEat(){
12 Person p = new Person();
13 p.eat();
14 }
15 }
针对每个类的每个方法编写独立的测试码,@Test相当于提供一个独立的程序入口而不必使用main函数。
当然除了@Test还有一些常用的,如@before和@after
标签:style blog color os 使用 sp for on div
原文地址:http://www.cnblogs.com/KevinHelloWorld/p/4122267.html