Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for javaRestTest (0.06 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/InternalJavaRestTestPlugin.java

    /**
     * Apply this plugin to run the Java based REST tests.
     */
    public class InternalJavaRestTestPlugin implements Plugin<Project> {
    
        public static final String SOURCE_SET_NAME = "javaRestTest";
    
        @Override
        public void apply(Project project) {
            project.getPluginManager().apply(RestTestBasePlugin.class);
    
            // create source set
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 1.6K bytes
    - Click Count (0)
  2. TESTING.asciidoc

    * `tests.rest.blacklist`: comma separated globs that identify tests that are
    blacklisted and need to be skipped
    e.g. -Dtests.rest.blacklist=index/*/Index document,get/10_basic/*
    
    Java REST tests can be run with the "javaRestTest" task.
    
    For example :
    ---------------------------------------------------------------------------
    ./gradlew :modules:mapper-extras:javaRestTest
    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)
Back to Top