- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for ESIntegTestCase (0.2 seconds)
-
TESTING.asciidoc
* **`ESTestCase`**: The base class of all tests. It is typically extended directly by unit tests. * **`ESSingleNodeTestCase`**: This test case sets up a cluster that has a single node. * **`ESIntegTestCase`**: An integration test case that creates a cluster that might have multiple nodes. * **`ESRestTestCase`**: An integration tests that interacts with an external
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jun 07 13:55:20 GMT 2021 - 32.5K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsPrecommitPlugin.java
testsRule.baseClass("org.apache.lucene.util.LuceneTestCase"); TestingConventionRule itRule = t.getNaming().maybeCreate("IT"); itRule.baseClass("org.elasticsearch.test.ESIntegTestCase"); itRule.baseClass("org.elasticsearch.test.rest.ESRestTestCase"); }); return testingConventions; }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalPluginBuildPlugin.java
t.getNaming().create("IT", testingConventionRule -> { testingConventionRule.baseClass("org.elasticsearch.test.ESIntegTestCase"); testingConventionRule.baseClass("org.elasticsearch.test.rest.ESRestTestCase"); testingConventionRule.baseClass("org.elasticsearch.test.ESSingleNodeTestCase"); }); });
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 5K bytes - Click Count (0)