SpringBoot学習-(五)SpringBootテスト
3259 ワード
1.pom依存の導入
<dependency>
<groupId>org.springframework.bootgroupId>
<artifactId>spring-boot-starter-testartifactId>
<scope>testscope>
dependency>
2.筆記試験類
package com.ahut.mapper;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import com.ahut.entity.GoodsType;
@RunWith(SpringRunner.class)// springboot
@SpringBootTest// springboot
public class GoodsTypeMapperTest {
@Autowired//
private GoodsTypeMapper typeDao;
@Test//
public void testAutowired() throws Exception{
System.out.println(typeDao);
GoodsType type = typeDao.getByTypeName(" ");
System.out.println(type);
}
}
不要なパケットをクリーンアップ:MyEclipseショートカット:Ctrl+Shift+O