[Spring] 🙉Fixture Monkey🙉
·
Spring
Fixture Monkey란? Fixture Monkey naver.github.io 나는 새로운 프레임워크, 라이브러리 등을 공부할 때 꼭 도큐먼트부터 찾아간다.블로그 글 여럿 보는 것보다 Docs 한 번이 더 도움 된다.게다가 Fixture Monkey는 네이버에서 개발된 라이브러리인 만큼 한국어도 지원한다! 그래서 픽쳐 몽키란 무엇인가?Fixture Monkey는 테스트 객체를 쉽게 생성하고 조작할 수 있도록 고안된 Java 및 Kotlin 라이브러리입니다. 내 식으로 말하자면 "테스트 코드 객체 생성 노가다를 줄여주는 라이브러리"이다.  종속성JDK 1.8 이상 (또는 Kotlin 1.8 이상)JUnit 5 platformbuild.gradletestImplementation 'com.naverc..
[Spring] JUnit 5 단위 테스트
·
Spring
JUnit 5 자바 프로그래밍 언어 용 단위 테스트 프레임워크단위 테스트는 각 단위가 정확하게 동작하는지를 검사하는 테스트 기법으로 빠르게 작성할 수 있고 문제 발생 시 잘못된 부분을 손쉽게 장점이 있다.  JUnit 5 User GuideAlthough the JUnit Jupiter programming model and extension model do not support JUnit 4 features such as Rules and Runners natively, it is not expected that source code maintainers will need to update all of their existing tests, test extensions, and custojunit.or..