16 package org.openkilda.atdd.staging.tests.monkeysuite.checktraffic;
18 import static org.mockito.ArgumentMatchers.any;
19 import static org.mockito.Mockito.times;
20 import static org.mockito.Mockito.verify;
26 import cucumber.api.CucumberOptions;
27 import cucumber.api.java.After;
28 import org.junit.Ignore;
29 import org.junit.runner.RunWith;
30 import org.springframework.beans.factory.annotation.Autowired;
31 import org.springframework.test.context.ActiveProfiles;
35 @CucumberOptions(features = {
"classpath:features/monkey_suite.feature"},
36 glue = {
"org.openkilda.atdd.staging.tests.monkeysuite.checktraffic",
"org.openkilda.atdd.staging.steps"},
37 tags = {
"@CheckTraffic"},
38 plugin = {
"json:target/cucumber-reports/monkey_suite_check_traffic_report.json"})
39 @ActiveProfiles(
"mock")
42 public static class MonkeySuiteCheckTrafficHook {
50 verify(traffExamService, times(3)).startExam(any());
51 verify(traffExamService, times(3)).waitExam(any());