use of com.endava.cats.report.TestCaseExporter in project cats by Endava.
the class BypassAuthenticationFuzzerTest method setup.
@BeforeEach
void setup() {
catsUtil = Mockito.mock(CatsUtil.class);
filesArguments = new FilesArguments(catsUtil);
serviceCaller = Mockito.mock(ServiceCaller.class);
bypassAuthenticationFuzzer = new BypassAuthenticationFuzzer(serviceCaller, testCaseListener, filesArguments);
ReflectionTestUtils.setField(testCaseListener, "testCaseExporter", Mockito.mock(TestCaseExporter.class));
}
Aggregations