随笔分类 - junit
摘要:package *.withdraw;import javax.annotation.Resource;import org.junit.Before;import org.junit.Test;import org.junit.runner.RunWith;import org.mockito.I...
阅读全文
摘要:冒烟测试:修改了bug,检测bug修改之后有没有对其他功能造成影响?回归测试:修改了老的代码,检测系统功能是否正常,有没有引入新的错误,其他功能有没有引入错误?
阅读全文
摘要:package aoptest;import org.aspectj.lang.ProceedingJoinPoint;import org.aspectj.lang.annotation.Around;import org.aspectj.lang.annotation.Aspect;public...
阅读全文
摘要:如果在测试类的类名上面添加了注解@ContextConfiguration("meta/springConfigured.xml")如何在标注了@Test的方法里面获取上面xml文件中的配置?package aoptest;import org.junit.Assert;import org.jun...
阅读全文