springmvc单元测试类

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/fantasic_van/article/details/80227201
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.tisson.zk.portal.service.TestService;


@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:applicationContext.xml", "classpath:springmvc.xml" })  
public class Test1 {

    @Autowired
    private TestService testService;

    @Test
    public void test1(){
        testService.test();
    }
}

猜你喜欢

转载自blog.csdn.net/fantasic_van/article/details/80227201