WEB1 [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 다음