Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for runSamples (0.31 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/samples/AutoTestedSamplesIdePluginsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractAutoTestedSamplesTest
    import org.junit.Test
    
    class AutoTestedSamplesIdePluginsIntegrationTest extends AbstractAutoTestedSamplesTest {
        @Test
        void runSamples() {
            runSamplesFrom("src/main")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:39:04 UTC 2024
    - 902 bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/samples/AutoTestedSamplesPluginsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractAutoTestedSamplesTest
    import org.junit.Test
    
    class AutoTestedSamplesPluginsIntegrationTest extends AbstractAutoTestedSamplesTest {
    
        @Test
        void runSamples() {
            // for debugging purposes you can restrict the tests samples to only a single class
    //        includeOnly '**/Test.java'
            runSamplesFrom("src/main")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/integTest/groovy/org/gradle/samples/AutoTestedSamplesWorkersIntegrationTest.groovy

    package org.gradle.samples
    
    import org.gradle.integtests.fixtures.AbstractAutoTestedSamplesTest
    import org.junit.Test
    
    class AutoTestedSamplesWorkersIntegrationTest extends AbstractAutoTestedSamplesTest {
        @Test
        void runSamples() {
            runSamplesFrom("src/main")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:39:04 UTC 2024
    - 899 bytes
    - Viewed (0)
  4. src/testing/example.go

    	Output    string
    	Unordered bool
    }
    
    // RunExamples is an internal function but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    func RunExamples(matchString func(pat, str string) (bool, error), examples []InternalExample) (ok bool) {
    	_, ok = runExamples(matchString, examples)
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. src/testing/testing.go

    		haveExamples = len(m.examples) > 0
    		testRan, testOk := runTests(m.deps.MatchString, m.tests, deadline)
    		fuzzTargetsRan, fuzzTargetsOk := runFuzzTests(m.deps, m.fuzzTargets, deadline)
    		exampleRan, exampleOk := runExamples(m.deps.MatchString, m.examples)
    		m.stopAlarm()
    		if !testRan && !exampleRan && !fuzzTargetsRan && *matchBenchmarks == "" && *matchFuzz == "" {
    			fmt.Fprintln(os.Stderr, "testing: warning: no tests to run")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"InternalTest.Name", Field, 0},
    		{"M", Type, 4},
    		{"Main", Func, 0},
    		{"MainStart", Func, 4},
    		{"PB", Type, 3},
    		{"RegisterCover", Func, 2},
    		{"RunBenchmarks", Func, 0},
    		{"RunExamples", Func, 0},
    		{"RunTests", Func, 0},
    		{"Short", Func, 0},
    		{"T", Type, 0},
    		{"TB", Type, 2},
    		{"Testing", Func, 21},
    		{"Verbose", Func, 1},
    	},
    	"testing/fstest": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top