Thank you.
I think the annotation “RunRate” is not what I want. The really requirement is how to control the rate of sending out request within unit time, such as 10 requests/min.
Is there an implementation? or How can I implementation in Ngrinder?
Yong Fu
On Aug 7, 2015, at 10:09, Gisoo.Gwon [via ngrinder] <
[hidden email]> wrote:
Do you want like this?
@RunWith(GrinderRunner)
class TestRunner {
@RunRate(70)
@Test
void reqMain() {
request.GET("
http://url/man")
}
@RunRate(30)
@Test
void reqDetail() {
request.GET("
http://url/menu/detail")
}
}