文章出處

spring測試要引用junit及spring-test

    <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${spring.version}</version>
            <scope>test</scope>
        </dependency>

代碼:

配置文件的引入:

單個文件:@ContextConfiguration(locations ="classpath:spring-mybatis.xml")

多個文件:@ContextConfiguration(locations ={"classpath:spring-mybatis.xml","classpath:application-context-provider.xml"})

import com.zoe.aop.dto.*;
import com.zoe.aop.service.out.DeptService;
import org.junit.Assert;
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;

/**
 * Created by gyoung on 2016/1/23.
 */
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations ={"classpath:spring-mybatis.xml","classpath:application-context-provider.xml"})
public class DeptServerTest {

    @Autowired
    private DeptService deptService;

    @Test
    public void deptSelectTest() {
        DeptDto model= deptService.getOneById("2");
        Assert.assertTrue(model.getId().equals("2"));
    }

    @Test
    public void updateTest(){
        DeptDto model= new DeptDto();
        model.setId("2");
        model.setName("111");
        deptService.update(model);
        String id=model.getId();
    }

    @Test
    public void pageTest(){
        QueryPage page=new QueryPage(1,5);
        ServiceResultT<CorePageList> resultT= deptService.getList(page);
    }

    @Test
    public void deleteTtest(){
        ServiceResult result= deptService.deleteById("1203");
    }

    @Test
    public void updateDbTest(){

    }
}

 


文章列表


不含病毒。www.avast.com
全站熱搜
創作者介紹
創作者 大師兄 的頭像
大師兄

IT工程師數位筆記本

大師兄 發表在 痞客邦 留言(0) 人氣()