Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for testFilter (0.18 sec)

  1. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFramework.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.tasks.testing.detection.TestFrameworkDetector;
    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.Nested;
    import org.gradle.api.tasks.testing.TestFilter;
    import org.gradle.api.tasks.testing.TestFrameworkOptions;
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.process.internal.worker.WorkerProcessBuilder;
    
    import java.io.Closeable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestFramework.java

    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.tasks.testing.Test;
    import org.gradle.api.tasks.testing.TestFilter;
    import org.gradle.api.tasks.testing.junit.JUnitOptions;
    import org.gradle.internal.Factory;
    import org.gradle.internal.scan.UsedByScanPlugin;
    import org.gradle.process.internal.worker.WorkerProcessBuilder;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

    import org.gradle.api.internal.tasks.testing.filter.DefaultTestFilter;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.api.provider.Provider;
    import org.gradle.api.tasks.testing.TestFilter;
    import org.gradle.api.tasks.testing.junitplatform.JUnitPlatformOptions;
    import org.gradle.internal.jvm.UnsupportedJavaRuntimeException;
    import org.gradle.internal.scan.UsedByScanPlugin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can use broken test filter [#testFilter]"() {
            given:
            def lib = new SwiftLibWithXCTest()
            settingsFile << "rootProject.name = '${lib.projectName}'"
            buildFile << "apply plugin: 'swift-library'"
            lib.writeToProject(testDirectory)
    
            when:
            runAndFail('xcTest', '--tests', testFilter)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         * Classes or method names are supported, wildcard '*' is supported.
         * For more information see the user guide chapter on testing.
         *
         * For more information on supported patterns see {@link TestFilter}
         */
        @Option(option = "tests", description = "Sets test class or method name to be included (in addition to the test task filters), '*' is supported.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/swift_testing.adoc

    include::sample[dir="snippets/swift/testFiltering/groovy",files="build.gradle[tags=test-filtering]"]
    ====
    
    For more details and examples of declaring filters in the build script, please see the TestFilter reference.
    
    The command-line option is especially useful to execute a single test method.
    It is also possible to supply multiple `--tests` options, all of whose patterns will take effect.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client_test.go

    			// Ignore the adds
    			return !strings.HasPrefix(s, "add/")
    		})
    		return slices.Equal(events, []string{"delete/selected"}) ||
    			slices.Equal(events, nil)
    	}, retry.Timeout(time.Second*3))
    }
    
    func TestFilter(t *testing.T) {
    	tracker := assert.NewTracker[string](t)
    	c := kube.NewFakeClient()
    	meshWatcher := mesh.NewTestWatcher(&meshconfig.MeshConfig{})
    	testns := clienttest.NewWriter[*corev1.Namespace](t, c)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. pkg/slices/slices_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			if got := FindFunc(tt.elements, tt.fn); !reflect.DeepEqual(got, tt.want) {
    				t.Errorf("FindFunc got %v, want %v", got, tt.want)
    			}
    		})
    	}
    }
    
    func TestFilter(t *testing.T) {
    	tests := []struct {
    		name     string
    		elements []string
    		fn       func(string) bool
    		want     []string
    	}{
    		{
    			name:     "empty element",
    			elements: []string{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    |<<command_line_interface#command_line_interface,Command line interface>>
    |Flags that configure build behavior and Gradle features
    |`--rerun`
    
    |<<sec:project_properties,Project properties>>
    |Properties specific to your Gradle project
    |`TestFilter::isFailOnNoMatchingTests=false`
    
    |<<#sec:gradle_system_properties,System properties>>
    |Properties that are passed to the Gradle runtime (JVM)
    |`systemProp.http.proxyHost=somehost.org`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				if !meet && CompilationResults[i].Error != nil {
    					t.Errorf("Unexpected err '%v' for expression '%s'", CompilationResults[i].Error, validations[i].GetExpression())
    				}
    			}
    		})
    	}
    }
    
    func TestFilter(t *testing.T) {
    	configMapParams := &corev1.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "foo",
    		},
    		Data: map[string]string{
    			"fakeString": "fake",
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
Back to top