Groovy1 Spock 테스트 정리 Spock으로 테스트코드를 짜보자 (Spock)[http://kwonnam.pe.kr/wiki/java/spock] spock test 예시 when - then @SpringBootTest class apiServiceSpecTest extends Specification { @Autowired ApiService apiService int productNo = 100 int size = 100 def "getProductNames 테스트"() { when: List result = apiService.getProductNames(productNo, size) then: result[0] == "name1" } } expect expect = when + then def "getProductNames .. 2019. 5. 23. 이전 1 다음