八、Maven下进行单元测试

八、单元测试

erp_dao工程添加junit

    <dependency>

        <groupId>junit</groupId>

        <artifactId>junit</artifactId>

        <version>4.9</version>

        <scope>test</scope>

    </dependency>

 

erp_dao工程src/test/java 下创建测试类

package erp_dao;

 

import org.junit.Test;

import org.junit.runner.RunWith;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.test.context.ContextConfiguration;

import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

 

import cn.itcast.mavenweb.dao.DepDao;

 

@RunWith(SpringJUnit4ClassRunner.class)

@ContextConfiguration(locations={"classpath:applicationContext_dao.xml","classpath:applicationContext_datasource.xml"})

public class TestDepDao {

 

    @Autowired

    private DepDao depDao;

       

    @Test

    public void testList(){

        System.out.println("test!!");

        System.out.println(depDao.getList().size());

    }

   

}

 

右键点击你要测试的方法

1370350-20180408135020432-649830342.png

选择右键菜单  Run as --> JUnit test

如果是绿色的显示表示通过测试

1370350-20180408135020664-855632414.png

如果是红色的显示表示未通过测试

1370350-20180408135020889-975598115.png

 

 

如果有测试类未通过,直接打包,会出现以下提示

1370350-20180408135021926-1588194233.jpg

表示该工程没有成功,因为测试未通过。也就是说打包操作是要求在所有的测试用例都通过的基础上才进行。

另外,通过我们观察,发现测试类和JUnit 并不会打包到war包中





转载于:https://www.cnblogs.com/zhaoxuan734/p/8744558.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值