Groovy @RunRate 오류

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Groovy @RunRate 오류

chsong
nGrinder 3.2.1 을 사용중입니다.
Groovy에서 @RunRate 을 사용하면 컴파일 에러가 발생합니다.

스크립트 생성 버튼을 눌러 만든 스크립트에 단순히 아래와 같이 @RunRate만 추가했을 뿐인데...
nGrinder 3.2.1. 버전에서는 지원이 안되는 건가요?

        @RunRate(10)
        @Test
        public void test(){
            //do some testing

        }
Reply | Threaded
Open this post in threaded view
|

Re: Groovy @RunRate 오류

junoyoon
Administrator
Maven 에 연동해서 사용하시는 지요? @RunRate 는 nGrinder 3.2.1 부터 지원하는 어노테이션 인데요..

현재 사용하시는 pom.xml 이 이전에 만들어 놓으신 거라.. ngrinder-groovy 3.2 버전에 연결되어 있을 수 있습니다.

따라서 pom.xml 을 오픈하시고, 여기에 ngrinder-groovy dependency의 버전을 3.2.1 로 지정해 주세요.

그 다음에 Refresh Maven Project 를 하면 됩니다.
Reply | Threaded
Open this post in threaded view
|

Re: Groovy @RunRate 오류

chsong
Maven을 사용하지 않고 실행하고있습니다.
반드시 maven을 사용하여야 하나요
Reply | Threaded
Open this post in threaded view
|

Re: Groovy @RunRate 오류

junoyoon
Administrator
그렇다면 아주 단순한 자바 문제로 돌아가게 되는데요..
혹시 @RunRate 의 패키지를 import 하지 않으신게 아닌가요?


import net.grinder.scriptengine.groovy.junit.annotation.RunRate;
Reply | Threaded
Open this post in threaded view
|

Re: Groovy @RunRate 오류

chsong
아하...참 이걸 빼먹었네요.;;;;;
해결됐습니다. 감사합니다. ^^