day26-单位测试

小小小幸运  金牌会员 | 2024-6-25 16:20:18 | 来自手机 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 921|帖子 921|积分 2763

1. 单位测试Junit

1.1 什么是单位测试?(掌握)


1.2 Junit的特点?(掌握)


1.3 基本用法:(掌握)



现实开发中单位测试的使用方式(掌握)



  1. public class TestDemo {
  2.     public int addMethod(int a,int b){
  3.         return a+b;
  4.     }
  5. }
复制代码
  1. public class Main {
  2.     @Test
  3.     public void method(){
  4.         TestDemo testDemo = new TestDemo();
  5.         int result = testDemo.addMethod(3, 4);
  6.         Assert.assertEquals("add方法错了",result,7);
  7.     }
  8. }
复制代码




  1. public class Main {
  2.     @Before
  3.     public void beforeMethod() throws IOException {
  4.         //先备份
  5.         File src = new File("a.txt");
  6.         File dest = new File("b.txt");
  7.         FileInputStream fis = new FileInputStream(src);
  8.         FileOutputStream fos = new FileOutputStream(dest);
  9.         int b;
  10.         while ((b=fis.read())!=-1){
  11.             fos.write(b);
  12.         }
  13.         fos.close();
  14.         fis.close();
  15.     }
  16.     @Test
  17.     public void testMethod(){
  18.         File file = new File("a.txt");
  19.         //删除文件
  20.         boolean result = file.delete();
  21.         //文件是否存在
  22.         boolean exists = file.exists();
  23.         //只有同时满足了,才表示delete方法正确
  24.         Assert.assertEquals("delete方法错了",result,true);
  25.         Assert.assertEquals("delete方法错了",exists,false);
  26.     }
  27.     @After
  28.     public void afterMethod() throws IOException {
  29.         //还原数据
  30.         File dest = new File("a.txt");
  31.         File src = new File("b.txt");
  32.         FileInputStream fis = new FileInputStream(src);
  33.         FileOutputStream fos = new FileOutputStream(dest);
  34.         int b;
  35.         while ((b=fis.read())!=-1){
  36.             fos.write(b);
  37.         }
  38.         fos.close();
  39.         fis.close();
  40.         //删除备份数据
  41.         src.delete();
  42.     }
  43. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

小小小幸运

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表