Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for TestFilter (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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