Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 85 for testOk (0.2 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    class BaseTest : public ::testing::Test {
      // You can inherit all the usual members for a non-parameterized test
      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      static bool Create(const char* statement, const RE* regex,
                         const char* file, int line, DeathTest** test);
      DeathTest();
      virtual ~DeathTest() { }
    
      // A helper class that aborts a death test when it's deleted.
      class ReturnSentinel {
       public:
        explicit ReturnSentinel(DeathTest* test) : test_(test) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. docs/tr/docs/features.md

    
    ### Test edildi
    
    * 100% <abbr title="Kodun ne kadarının test edildiği">test coverage</abbr>.
    * 100% <abbr title="Python type annotations, with this your editor and external tools can give you better support">typeları belirtilmiş</abbr> codebase.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    class BaseTest : public ::testing::Test {
      // You can inherit all the usual members for a non-parameterized test
      // fixture here.
    };
    
    class DerivedTest : public BaseTest, public ::testing::WithParamInterface<int> {
      // The usual test fixture members go here too.
    };
    
    TEST_F(BaseTest, HasFoo) {
      // This is an ordinary non-parameterized test.
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/testflag.go

    // to have "test" before them, and reading the command line for the test binary.
    // Unfortunately for us, we need to do our own flag processing because go test
    // grabs some flags but otherwise its command line is just a holding place for
    // pkg.test's arguments.
    // We allow known flags both before and after the package name list,
    // to allow both
    //
    //	go test fmt -custom-flag-for-fmt-test
    //	go test -x math
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/debug/buildinfo/buildinfo_test.go

    	data := buf.Bytes()
    
    	if _, err := pe.NewFile(bytes.NewReader(data)); err != nil {
    		t.Fatalf("need a valid PE header for the misaligned buildInfoMagic test: %s", err)
    	}
    
    	// Place buildInfoMagic after the header.
    	for i := 1; i < paddingSize-len(buildInfoMagic); i++ {
    		// Test only misaligned buildInfoMagic.
    		if i%buildInfoAlign == 0 {
    			continue
    		}
    
    		t.Run(fmt.Sprintf("start_at_%d", i), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/java-library-ignore-deprecated-test.png

    java-library-ignore-deprecated-test.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    var gitrepo1, hgrepo1, vgotest1 string
    
    var altRepos = func() []string {
    	return []string{
    		"localGitRepo",
    		hgrepo1,
    	}
    }
    
    // TODO: Convert gitrepo1 to svn, bzr, fossil and add tests.
    // For now, at least the hgrepo1 tests check the general vcs.go logic.
    
    // localGitRepo is like gitrepo1 but allows archive access
    // (although that doesn't really matter after CL 120041),
    // and has a file:// URL instead of http:// or https://
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                    }
                    constraint("org:foo:[1.0,1.1]", "org:foo:1.1").byConstraint('didn\'t match version 1.2 because tested versions')
                }
            }
        }
    
        void "transitive dependencies of an dependency constraint do not participate in conflict resolution if it is not included elsewhere"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleExecuter.java

    import org.gradle.api.logging.configuration.WarningMode;
    import org.gradle.integtests.fixtures.RichConsoleStyling;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    import org.gradle.util.GradleVersion;
    import org.gradle.util.internal.TextUtil;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.PipedInputStream;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top