我们平常运行一段代码,测试其方法,需要我们进行创建对象
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
public class Test { public static void main(String[] args) { Animal animal = new Animal(); animal.f1(); animal.f2(); } } class Animal{ public void f1(){ System.out.println("我是方法一"); } public void f2(){ System.out.println("我是方法二"); } }
|
这样比较麻烦,但是我们可以通过JUnit的方法进行使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
public class Test { public static void main(String[] args) { Animal animal = new Animal(); animal.f1(); animal.f2(); } } class Animal{ @Test public void f1(){ System.out.println("我是方法一"); } public void f2(){ System.out.println("我是方法二"); } }
|