test8 [spock] Kotlin테스트 ReadOnlyPropertyException error @SpringBootTestclass MemberSpeckTest extends Specification { @Autowired MemberService memberService def "getProfileByMemberId() Test"() { given: def profileService = Mock(ProfileService.class) profileService.getProfileByMemberId(0) >> new ProfileResponse(name: "햄과함께") // error // ... }}Colored by Color Scriptercs 위와 같이 groovy 언어로 테스트 코드를 짰다. data class ProfileResponse( val name: String = "", val.. 2019. 3. 5. [TEST] spock test example /* kotlin */ // SumService.kotlin@Serviceclass SumService { fun getSum(a: Int, b: Int) = a + b }Colored by Color Scriptercs 위와 같이 숫자 a, b를 입력받아 합을 반환하는 함수가 있다고하자.이 함수를 테스트코드를 작성하여 테스트해보자. // SumServiceSpecTest.groovy @SpringBootTestclass SumServiceSpecTest extends Specification { @Autowired SumService sumService def "getSum 음수 테스트" (){ given: int a = -1 int b = -2 when: int result = sumService.g.. 2019. 1. 11. 이전 1 2 다음