@@ -51,6 +51,8 @@ public void testWithoutFocusOrPrefix() throws Throwable {
5151 args .add (baseUrlOfSut );
5252 args .add ("--bbSwaggerUrl" );
5353 args .add (baseUrlOfSut + "/v2/api-docs" );
54+ setOption (args , "security" , "false" );
55+ setOption (args , "httpOracles" , "false" );
5456
5557 // no endpointFocus or endpointPrefix is provided
5658 Solution <RestIndividual > solution = initAndRun (args );
@@ -122,6 +124,8 @@ public void testRunBlackboxWithFocusWithoutParameters() throws Throwable {
122124 args .add (baseUrlOfSut + "/v2/api-docs" );
123125 args .add ("--endpointFocus" );
124126 args .add (endpointFocus );
127+ setOption (args , "security" , "false" );
128+ setOption (args , "httpOracles" , "false" );
125129
126130 // no endpointFocus or endpointPrefix is provided
127131 Solution <RestIndividual > solution = initAndRun (args );
@@ -164,6 +168,8 @@ public void testRunBlackboxWithFocusWithParameters() throws Throwable {
164168 args .add ("--endpointFocus" );
165169 args .add (endpointFocus );
166170 setOption (args , "advancedBlackBoxCoverage" , "false" );
171+ setOption (args , "security" , "false" );
172+ setOption (args , "httpOracles" , "false" );
167173
168174 // no endpointFocus or endpointPrefix is provided
169175 Solution <RestIndividual > solution = initAndRun (args );
@@ -204,6 +210,8 @@ public void testRunBlackboxWithFocusOneEndpoint() throws Throwable {
204210 args .add (baseUrlOfSut + "/v2/api-docs" );
205211 args .add ("--endpointFocus" );
206212 args .add (endpointFocus );
213+ setOption (args , "security" , "false" );
214+ setOption (args , "httpOracles" , "false" );
207215
208216 // no endpointFocus or endpointPrefix is provided
209217 Solution <RestIndividual > solution = initAndRun (args );
@@ -244,6 +252,8 @@ public void testRunBlackboxWithPrefixWithoutParameters() throws Throwable {
244252 args .add (baseUrlOfSut + "/v2/api-docs" );
245253 args .add ("--endpointPrefix" );
246254 args .add (endpointPrefix );
255+ setOption (args , "security" , "false" );
256+ setOption (args , "httpOracles" , "false" );
247257
248258 // no endpointFocus or endpointPrefix is provided
249259 Solution <RestIndividual > solution = initAndRun (args );
@@ -285,6 +295,8 @@ public void testRunBlackboxWithPrefixWithParameters() throws Throwable {
285295 args .add ("--endpointPrefix" );
286296 args .add (endpointPrefix );
287297 setOption (args , "advancedBlackBoxCoverage" , "false" );
298+ setOption (args , "security" , "false" );
299+ setOption (args , "httpOracles" , "false" );
288300
289301 // no endpointFocus or endpointPrefix is provided
290302 Solution <RestIndividual > solution = initAndRun (args );
@@ -326,6 +338,8 @@ public void testRunBlackboxPrefixNonExistingFocusValidPrefix() throws Throwable
326338 args .add ("--endpointPrefix" );
327339 args .add (endpointPrefix );
328340 setOption (args , "advancedBlackBoxCoverage" , "false" );
341+ setOption (args , "security" , "false" );
342+ setOption (args , "httpOracles" , "false" );
329343
330344 // no endpointFocus or endpointPrefix is provided
331345 Solution <RestIndividual > solution = initAndRun (args );
0 commit comments