일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- ReactJS
- jsp
- Git
- 요리
- db
- JVM
- Design Patterns
- MySQL
- Spring Boot
- it
- java
- 맛집
- Spring Batch
- Web Server
- Gradle
- devops
- IntelliJ
- elasticsearch
- redis
- linux
- Oracle
- ubuntu
- php
- jenkins
- javascript
- laravel
- springboot
- tool
- Spring
- AWS
Archives
- Today
- Total
아무거나
[Spring Boot] 간단한 테스트 코드 작성 본문
반응형
스프링 부트에서 테스트 코드를 작성할 때 간단하게 기술한것이다.
// 버전: 2.0.6
testCompile('org.springframework.boot:spring-boot-starter-test')
import com.wmp.admin.category.entity.VendorCategoryMap;
import com.wmp.admin.category.mapper.CategoryMapMapper;
import com.wmp.admin.category.mapper.CategoryMapRequireMapper;
import java.time.LocalDateTime;
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.context.annotation.Import;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
@Import(value = {ApiApplication.class})
public class SourceTest {
@Test
public void testCode() {
// test code...
}
}
반응형
'Java & Kotlin > Spring' 카테고리의 다른 글
[Spring Boot] @ComponentScan 이란 (0) | 2019.01.16 |
---|---|
[Spring Boot] 스케줄링 구현 (0) | 2019.01.16 |
[Spring Boot] Spring Boot에서 Tomcat연동 설정 (0) | 2019.01.07 |
[Spring Boot] logback을 이용한 sql log 콘솔에 출력 (0) | 2018.12.27 |
[Spring Boot] Spring Boot + Gradle + VueJS 연동 (4) | 2018.09.28 |
Comments