Remove unneeded rest test params
This is the xplugins side of elastic/elasticsearchelastic/elasticsearch#21391 Original commit: elastic/x-pack-elasticsearch@30d36e340a
This commit is contained in:
parent
bb94f3a2b2
commit
fa97a806ca
|
@ -30,7 +30,7 @@ public abstract class XPackRestTestCase extends ESClientYamlSuiteTestCase {
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -30,7 +30,7 @@ public class CoreWithSecurityClientYamlTestSuiteIT extends ESClientYamlSuiteTest
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -29,7 +29,7 @@ public class ReindexWithSecurityClientYamlTestSuiteIT extends ESClientYamlSuiteT
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -31,7 +31,7 @@ public class GraphWithSecurityIT extends ESClientYamlSuiteTestCase {
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected String[] getCredentials() {
|
protected String[] getCredentials() {
|
||||||
|
|
|
@ -28,7 +28,7 @@ public class SmokeTestMonitoringWithSecurityClientYamlTestSuiteIT extends ESClie
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -27,7 +27,7 @@ public class SmokeTestMonitoringWithSecurityClientYamlTestSuiteIT extends ESClie
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -39,7 +39,7 @@ public class SmokeTestPluginsSslClientYamlTestSuiteIT extends ESClientYamlSuiteT
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
static Path keyStore;
|
static Path keyStore;
|
||||||
|
|
|
@ -30,7 +30,7 @@ public class XSmokeTestPluginsClientYamlTestSuiteIT extends ESClientYamlSuiteTes
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -29,7 +29,7 @@ public class SmokeTestSecurityWithMustacheClientYamlTestSuiteIT extends ESClient
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -27,7 +27,7 @@ public abstract class WatcherRestTestCase extends ESClientYamlSuiteTestCase {
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -27,7 +27,7 @@ public abstract class SmokeTestWatchesWithMustacheClientYamlTestSuiteTestCase ex
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -23,7 +23,7 @@ public class WatcherWithMustacheIT extends SmokeTestWatchesWithMustacheClientYam
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@ public abstract class WatcherRestTestCase extends ESClientYamlSuiteTestCase {
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -35,7 +35,7 @@ public class SmokeTestWatcherWithSecurityClientYamlTestSuiteIT extends ESClientY
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -28,7 +28,7 @@ public class SmokeTestWatcherClientYamlTestSuiteIT extends ESClientYamlSuiteTest
|
||||||
|
|
||||||
@ParametersFactory
|
@ParametersFactory
|
||||||
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
public static Iterable<Object[]> parameters() throws IOException, ClientYamlTestParseException {
|
||||||
return ESClientYamlSuiteTestCase.createParameters(0, 1);
|
return ESClientYamlSuiteTestCase.createParameters();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
Loading…
Reference in New Issue