use of com.endava.cats.args.ProcessingArguments in project cats by Endava.
the class FuzzingDataFactoryTest method setup.
@BeforeEach
void setup() {
filesArguments = Mockito.mock(FilesArguments.class);
processingArguments = Mockito.mock(ProcessingArguments.class);
Mockito.when(processingArguments.isUseExamples()).thenReturn(true);
Mockito.when(processingArguments.getContentType()).thenReturn("application/json");
fuzzingDataFactory = new FuzzingDataFactory(filesArguments, processingArguments, catsGlobalContext);
}
Aggregations