250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 자바기초
- 기초코딩
- 제이쉘
- eclips
- 배열
- 리눅스
- github
- 이클립스
- 데이터베이스
- 자바
- JAVA기초
- 자바프로그래밍
- 스프링 기초
- JShell
- 초보코딩탈출
- 자바 스프링
- Elk
- Git
- 코딩초보
- 초보코딩
- 프로그래밍언어
- 컴퓨터과학개론
- 프로그래밍
- 메소드
- 클래스
- Java
- 프로그래밍기초
- 스프링
- spring
- 알고리즘
Archives
- Today
- Total
목록Spring framework/Junit (1)
키보드워리어
[스프링] Junit으로 테스트코드 구성해보기
Rest Controller코드 테스트 해보기 @RestController public class HelloController { @GetMapping("/hello") public String hello(){ return "hello"; } @GetMapping("/hello/dto") public HelloResponseDto helloResponseDto(@RequestParam("name") String name, @RequestParam("amount") int amount){ return new HelloResponseDto(name,amount); } } 간단한 경로 /hello 경로와 /hello/dto 매핑 구현시 이를 테스트로 해본다면 다음과 같이 짜볼 수 있음. @RequestPara..
Spring framework/Junit
2023. 4. 23. 13:02