Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ESRestTestCase (0.08 seconds)

  1. TESTING.asciidoc

      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
      cluster via the REST API. This is used for Java based REST tests.
    * **`ESClientYamlSuiteTestCase` **: A subclass of `ESRestTestCase` used to run
      YAML based REST tests.
    
    === Good practices
    
    ==== What kind of tests should I write?
    
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsPrecommitPlugin.java

                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)
  3. 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");
                });
            });
    
            project.afterEvaluate(p -> {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5K bytes
    - Click Count (0)
Back to Top