Comment: Correct plugin examples comment (#112609)

Minor change to correct the comment for running YAML test in plugin examples.
This commit is contained in:
Sam Xiao 2024-09-06 14:43:19 -04:00 committed by GitHub
parent 4dee614707
commit 52bb54b7dc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ import static org.elasticsearch.example.customsettings.ExampleCustomSettingsConf
* <p>
* It's a JUnit test class that extends {@link ESTestCase} which provides useful methods for testing.
* <p>
* The tests can be executed in the IDE or using the command: ./gradlew :example-plugins:custom-settings:test
* The tests can be executed in the IDE or using the command: ./gradlew :custom-settings:test
*/
public class ExampleCustomSettingsConfigTests extends ESTestCase {

View File

@ -15,7 +15,7 @@ import org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase;
/**
* {@link ExampleCustomSettingsClientYamlTestSuiteIT} executes the plugin's REST API integration tests.
* <p>
* The tests can be executed using the command: ./gradlew :example-plugins:custom-settings:yamlRestTest
* The tests can be executed using the command: ./gradlew :custom-settings:yamlRestTest
* <p>
* This class extends {@link ESClientYamlSuiteTestCase}, which takes care of parsing the YAML files
* located in the src/yamlRestTest/resources/rest-api-spec/test/ directory and validates them against the

View File

@ -15,7 +15,7 @@ import org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase;
/**
* {@link ExampleRestHandlerClientYamlTestSuiteIT} executes the plugin's REST API integration tests.
* <p>
* The tests can be executed using the command: ./gradlew :example-plugins:rest-handler:yamlRestTest
* The tests can be executed using the command: ./gradlew :rest-handler:yamlRestTest
* <p>
* This class extends {@link ESClientYamlSuiteTestCase}, which takes care of parsing the YAML files
* located in the src/yamlRestTest/resources/rest-api-spec/test/ directory and validates them against the