Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 134 for testOk (0.28 sec)

  1. src/cmd/go/internal/load/test.go

    //   - pmain, the package main corresponding to the test binary (running tests in ptest and pxtest).
    //   - ptest, the package p compiled with added "package p" test files.
    //   - pxtest, the result of compiling any "package p_test" (external) test files.
    //
    // If the package has no "package p_test" test files, pxtest will be nil.
    // If the non-test compilation of package p can be reused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/project-with-source/Test.scala

    package ${packageName}
    
    import org.junit.Assert._
    
    class ${testClassName} {
        val production = new ${productionClassName}("value")
    
        @org.junit.Test
        def test() {
            assertEquals(production.property, "value")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 229 bytes
    - Viewed (0)
  3. testing/performance/src/templates/with-verbose-junit/Test.java

        @org.junit.Test
        public void testOne() {
            for (int i = 0; i < 1000; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
            assertEquals(production.getProperty(), "value");
        }
    
        @org.junit.Test
        public void testTwo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 991 bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            boolean isModule
        ) {
            DeprecationLogger.deprecateIndirectUsage("The automatic loading of test framework implementation dependencies")
                .withAdvice("Declare the desired test framework directly on the test suite or explicitly declare the test framework implementation dependencies on the test's runtime classpath.")
                .willBeRemovedInGradle9()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestFramework.java

            return workerProcessBuilder -> workerProcessBuilder.sharedPackages("org.testng");
        }
    
        @Override
        public boolean getUseDistributionDependencies() {
            // We have no (default) implementation dependencies (see above).
            // The user must add their TestNG dependency to the test's runtimeClasspath themselves
            // or preferably use test suites where the dependencies are automatically managed.
            return false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. src/internal/syscall/windows/registry/registry_test.go

    	}
    
    	for _, test := range tests {
    		err := k.SetValue(test.Name, test.Type, test.Data)
    		if err != nil {
    			t.Fatalf("SetValue for %q failed: %v", test.Name, err)
    		}
    	}
    
    	for _, test := range tests {
    		switch test.Type {
    		case registry.DWORD, registry.QWORD:
    			value, valType, err := k.GetIntegerValue(test.Name)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:19:00 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeatureCompilationIntegrationTest.groovy

                }
            """
            file("src/test/java/com/acme/FeatureTest.java") << """package com.acme;
                import org.apache.commons.math3.complex.Complex;
                import org.junit.Test;
                import static org.junit.Assert.*;
    
                public class FeatureTest {
                    @Test
                    public void shouldCompileAndRun() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    	}
    	for _, test := range tl {
    		if test.got != test.exp {
    			t.Errorf("On %v, expected '%v', but got '%v'",
    				test.name, test.exp, test.got)
    		}
    	}
    }
    
    func TestPrintDeployment(t *testing.T) {
    
    	testDeployment := apps.Deployment{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:              "test1",
    			CreationTimestamp: metav1.Time{Time: time.Now().Add(1.9e9)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/multiproject/basic-dependencies/groovy/shared/src/test/resources/org/gradle/test-resource.txt

    Laura Kassovic <******@****.***> 1706138984 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:29:44 UTC 2024
    - Viewed (0)
  10. cluster/gce/config-test.sh

    ENABLE_VOLUME_SNAPSHOTS=${ENABLE_VOLUME_SNAPSHOTS:-true}
    
    # Optional: Enable legacy ABAC policy that makes all service accounts superusers.
    # Disabling this by default in tests ensures default RBAC policies are sufficient from 1.6+
    # Upgrade test jobs that go from a version < 1.6 to a version >= 1.6 should override this to be true.
    ENABLE_LEGACY_ABAC=${ENABLE_LEGACY_ABAC:-false} # true, false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
Back to top