今天要写测试,记录一下spring 的测试中两个方法
//使用注解测试
- @RunWith(SpringJUnit4ClassRunner.class)
- @ContextConfiguration({"classpath:applicationContext.xml"})
- public class ReadDaoImplTest {
- @Resource ReadDao readDao;
- @Test
- public void getListTest(){
- List<Client> clientList = readDao.getList("client.test", null);
- for(Client c:clientList){
- System.out.println(c.getVersionNum());
- }
- }
- }
// 手工获取applicationcontext
- public class ReadDaoImplTest {
- public static void main(String[] args){
- ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
- context.start();
- ReadDao fqaService = (ReadDao) context.getBean("readDao");
- System.out.println(fqaService);
- }
- }
注解顺序
@FixMethodOrder
注解 控制测试方法执行顺序
我们在写JUnit测试用例时,有时候需要按照定义顺序执行我们的单元测试方法,比如如在测试数据库相关的用例时候要按照测试插入、查询、删除的顺序测试。如果不按照这个顺序测试可能会出现问题,比如删除方法在前面执行,后面的方法就都不能通过测试,因为数据已经被清空了。而JUnit测试时默认的顺序是随机的。所以这时就需要有办法要求JUnit在执行测试方法时按照我们指定的顺序来执行。
JUnit是通过@FixMethodOrder
注解(annotation)来控制测试方法的执行顺序的。@FixMethodOrder
注解的参数是org.junit.runners.MethodSorters
对象,在枚举类org.junit.runners.MethodSorters
中定义了如下三种顺序类型:
- MethodSorters.JVM
Leaves the test methods in the order returned by the JVM. Note that the order from the JVM may vary from run to run (按照JVM得到的方法顺序,也就是代码中定义的方法顺序)
- MethodSorters.DEFAULT(默认的顺序)
Sorts the test methods in a deterministic, but not predictable, order() (以确定但不可预期的顺序执行)
- MethodSorters.NAME_ASCENDING
Sorts the test methods by the method name, in lexicographic order, with Method.toString() used as a tiebreaker (按方法名字母顺序执行)
举例说明
以下的代码,定义了三个方法testAddAndGet,testSearch,testRemove
,我设计的时候,是希望三个方法按定义的顺序来执行。
package test;
import org.junit.Assert;
import org.junit.FixMethodOrder;
import org.junit.runners.MethodSorters;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@FixMethodOrder(MethodSorters.JVM)//指定测试方法按定义的顺序执行
public class TestJNI {
private static final Logger logger = LoggerFactory.getLogger(TestJNI.class);
@Test
public void testAddAndGet(){
logger.info("test 'addBean' and 'getBean' ");
}
@Test
public final void testSearch() {
logger.info("test search CODE from JNI memory...");
}
@Test
public final void testRemove() {
logger.info("test remove CODE from JNI memory...");
}
}
如果@FixMethodOrder
定义为MethodSorters.DEFAULT
或去掉代码中的@FixMethodOrder注解,那么测试用便执行的顺序是
这并不是我要的结果,testRemove
如果先执行了,testSearch
肯定什么也找不到。
如果改成@FixMethodOrder(MethodSorters.JVM)
,则这个执行顺序才是我想要的顺序。
在静态类junit.framework.Assert或者静态类org.junit.Assert中存在以下几个方法
1.assertEquals()方法,用来查看对象中存的值是否是期待的值,与字符串比较中使用的equals()方法类似;
2.assertFalse()和assertTrue()方法,用来查看变量是是否为false或true,如果assertFalse()查看的变量的值是false则测试成功,如果是true则失败,assertTrue()与之相反。
3.assertSame()和assertNotSame()方法,用来比较两个对象的引用是否相等和不相等,类似于通过“==”和“!=”比较两个对象;
4.assertNull()和assertNotNull()方法,用来查看对象是否为空和不为空。