사용자 도구

사이트 도구


java:spock

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판 양쪽 다음 판
java:spock [2016/12/28 10:42]
kwon37xi
java:spock [2017/04/06 17:41]
kwon37xi
줄 67: 줄 67:
 ===== 오류 / Error ===== ===== 오류 / Error =====
   * [[https://github.com/spockframework/spock/issues/491|Spock and Slf4j combination causes compilation error]] : Spock에서 ''@groovy.util.logging.Slf4j'' 사용시에 ''Error:Groovyc: The current scope already contains a variable of the name $spock_valueRecorder'' 오류가 발생하는 경우가 있다. Logger 직접 선언할 것.   * [[https://github.com/spockframework/spock/issues/491|Spock and Slf4j combination causes compilation error]] : Spock에서 ''@groovy.util.logging.Slf4j'' 사용시에 ''Error:Groovyc: The current scope already contains a variable of the name $spock_valueRecorder'' 오류가 발생하는 경우가 있다. Logger 직접 선언할 것.
 +  * 1.0 버전에서 메소드가 여러개 override 돼 있을 경우 Type 지정이 명확하지 않으면 잘못된 메소드를 호출할 수도 있다.<code groovy>
 +// method 가 여러개로 override 돼 있을 경우 어떤 것이 호출될지 알 수 없음. 특히 return 도 서로 다를 때.
 +expect:
 +SomeClass.method(null) == null
 +
 +// 아래와 같이 파라미터와 리턴 타입을 모두 명시할 것.
 +when:
 +Result result = SomeClass.method(null as Request)
 +then:
 +result == null
 +</code>
  
 ===== 참조 ===== ===== 참조 =====
java/spock.txt · 마지막으로 수정됨: 2020/08/27 13:35 저자 kwon37xi