博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
junit测试框架
阅读量:5041 次
发布时间:2019-06-12

本文共 1030 字,大约阅读时间需要 3 分钟。

1 import junit.framework.Assert; 2  3 import org.junit.After; 4 import org.junit.Before; 5 import org.junit.Test; 6  7 public class JUnitTest { 8  9     //方法执行JUnit时,先运行@Before10     @Before 11     public void before() {12 13         System.out.println("before");14     }15 16     //方法执行JUnit时,后运行@After17     @After18     public void after() {19 20         System.out.println("After");21     }22 23     //标注了@Test可以用JUnit测试24     @Test25     public void testRun() {26 27         Person t = new Person();28         29         //断言  其他返回值是1,就执行run();30         Assert.assertEquals("1", t.run());31     }32 33     @Test34     public void testEai() {35         Person t = new Person();36 37         t.eat();38 39     }40 41 }
View Code
1 public class Person { 2  3     public String run(){ 4          5         System.out.println("run"); 6          7         return "1"; 8     } 9     10     public void eat(){11         12         System.out.println("eai");13     }14 15 }
View Code

 

转载于:https://www.cnblogs.com/aineko/p/3788631.html

你可能感兴趣的文章
Sam做题记录
查看>>
hexo 搭建博客
查看>>
C++的引用
查看>>
python itertools
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
文件操作
查看>>
NYOJ-613//HDU-1176-免费馅饼,数字三角形的兄弟~~
查看>>
graphite custom functions
查看>>
ssh无密码登陆屌丝指南
查看>>
一个自己写的判断2个相同对象的属性值差异的工具类
查看>>
[CF803C] Maximal GCD(gcd,贪心,构造)
查看>>
oracle连接的三个配置文件(转)
查看>>
Java 8 中如何优雅的处理集合
查看>>
[HNOI2012]永无乡 线段树合并
查看>>
Centos下源码安装git
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>
Extjs String转Json
查看>>