Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for ptrtest (0.14 sec)

  1. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            expect:
            hasCustomizedSettings("pmdMain", project.sourceSets.main)
            hasCustomizedSettings("pmdTest", project.sourceSets.test)
            hasCustomizedSettings("pmdOther", project.sourceSets.other)
            that(project.check, dependsOn(hasItem('pmdMain')))
            that(project.check, dependsOn(not(hasItems('pmdTest', 'pmdOther'))))
        }
    
        private void hasCustomizedSettings(String taskName, SourceSet sourceSet) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            passedClassFile.assertHasLinkTo('../packages/org.gradle.aggregation', 'org.gradle.aggregation')
    
            def mixedClassFile = results(reportDir.file('classes/org.gradle.aggregation.BarTest.html'))
            mixedClassFile.assertHasTests(2)
            mixedClassFile.assertHasFailures(1)
            mixedClassFile.assertHasIgnored(0)
            mixedClassFile.assertHasSuccessRate(50)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    		func TestTest(t *testing.T) {
    		}`
    	tg.tempFile("src/p1/p1_test.go", strings.Replace(testSrc, "package_test", "p1_test", 1))
    	tg.tempFile("src/p2/p2_test.go", strings.Replace(testSrc, "package_test", "p2_test", 1))
    	tg.tempFile("src/p3/p3_test.go", strings.Replace(testSrc, "package_test", "p3_test", 1))
    	tg.tempFile("src/p4/p4_test.go", strings.Replace(testSrc, "package_test", "p4_test", 1))
    	tg.setenv("GOPATH", tg.path("."))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_dash_c.txt

    exists -exec $WORK/coverdep
    
    -- go.mod --
    module coverdep
    
    go 1.16
    -- p.go --
    package p
    
    import _ "coverdep/p1"
    
    func F() {
    }
    -- p1/p1.go --
    package p1
    
    import _ "errors"
    -- p_test.go --
    package p
    
    import "testing"
    
    func Test(t *testing.T) {
    	F()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 389 bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/devel.usertools/aarch64.bazelrc

    test --test_timeout=500,900,-1,-1
    # Give only the list of failed tests at the end of the log
    test --test_summary=short
    
    # "nonpip" tests are regular py_test tests.
    # Pass --config=nonpip to run the same suite of tests. If you want to run just
    # one test for investigation, you don't need --config=nonpip; just run the
    # bazel test invocation as normal.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. pkg/kubelet/runonce_test.go

    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	containertest "k8s.io/kubernetes/pkg/kubelet/container/testing"
    	"k8s.io/kubernetes/pkg/kubelet/eviction"
    	kubepod "k8s.io/kubernetes/pkg/kubelet/pod"
    	podtest "k8s.io/kubernetes/pkg/kubelet/pod/testing"
    	"k8s.io/kubernetes/pkg/kubelet/secret"
    	"k8s.io/kubernetes/pkg/kubelet/server/stats"
    	"k8s.io/kubernetes/pkg/kubelet/status"
    	statustest "k8s.io/kubernetes/pkg/kubelet/status/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. ci/official/containers/linux_arm64/devel.usertools/aarch64_clang.bazelrc

    test --test_timeout=500,900,-1,-1
    # Give only the list of failed tests at the end of the log
    test --test_summary=short
    
    # "nonpip" tests are regular py_test tests.
    # Pass --config=nonpip to run the same suite of tests. If you want to run just
    # one test for investigation, you don't need --config=nonpip; just run the
    # bazel test invocation as normal.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 12:25:39 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/java/org/apache/maven/model/building/FileModelSourceTest.java

     *
     */
    class FileModelSourceTest {
    
        /**
         * Test of equals method, of class FileModelSource.
         */
        @Test
        void testEquals() throws Exception {
            File tempFile = createTempFile("pomTest");
            FileModelSource instance = new FileModelSource(tempFile);
    
            assertFalse(instance.equals(null));
            assertFalse(instance.equals(new Object()));
            assertTrue(instance.equals(instance));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. src/path/filepath/path_test.go

    		}
    	}
    }
    
    var dirtests = []PathTest{
    	{"", "."},
    	{".", "."},
    	{"/.", "/"},
    	{"/", "/"},
    	{"/foo", "/"},
    	{"x/", "x"},
    	{"abc", "."},
    	{"abc/def", "abc"},
    	{"a/b/.x", "a/b"},
    	{"a/b/c.", "a/b"},
    	{"a/b/c.x", "a/b"},
    }
    
    var nonwindirtests = []PathTest{
    	{"////", "/"},
    }
    
    var windirtests = []PathTest{
    	{`c:\`, `c:\`},
    	{`c:.`, `c:.`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationTestUtils.groovy

            assert suiteTestTestOps*.details.testDescriptor.name == ["fail", "ok", "anotherOk"]
            assert suiteTestTestOps*.details.testDescriptor.className == ["org.gradle.FooTest", "org.gradle.FooTest", "org.gradle.BarTest"]
            assert suiteTestTestOps*.details.testDescriptor.composite == [false, false, false]
    
            def testOutput = suiteTestTestOps[1].progress
            assert testOutput.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top