Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,099 for myHost (0.1 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitClassDetectionIntegrationTest.groovy

        def 'does not try to execute non-test class as test class'() {
            given:
            file('src/test/java/com/example/MyTest.java') << """
                package com.example;
    
                ${testFrameworkImports}
    
                public class MyTest {
                    @Test public void someTest() {
                        assertTrue(true);
                    }
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

                }
            '''.stripIndent()
            file('src/test/java/MyTest.java') << """
                ${testFrameworkImports}
                import org.junit.experimental.categories.Category;
                import org.powermock.modules.junit4.PowerMockRunner;
                @RunWith(PowerMockRunner.class)
                @Category(FastTest.class)
                public class MyTest {
                    @Test
                    public void testMyMethod() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

                dependencies.${testImplementationConfiguration} 'junit:junit:4.13'
                test.ignoreFailures = true
            """
            file("src/test/java/example/MyTest.java") << """
                package example;
                public class MyTest {
                    @org.junit.Test public void works() throws Exception {
                        System.out.print("out1");
                        System.err.print("err1");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGUpToDateCheckIntegrationTest.groovy

                }
            '''.stripIndent()
            file('suite.xml') << '''
                <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
                <suite name="MySuite">
                  <test name="MyTest">
                    <classes>
                      <class name="SomeTest" />
                    </classes>
                  </test>
                </suite>
            '''.stripIndent()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testlife/testdata/life.h

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    extern void Step(int, int, int *, int *);
    extern void DoStep(int, int, int, int, int, int, int *, int *);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 292 bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/issue23036.json

    {"Action":"output","Test":"TestActualCase","Output":"        foo_test.go:14: Differed.\n"}
    {"Action":"output","Test":"TestActualCase","Output":"                Expected: MyTest:\n"}
    {"Action":"output","Test":"TestActualCase","Output":"                --- FAIL: Test output from other tool\n"}
    {"Action":"output","Test":"TestActualCase","Output":"                Actual: not expected\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 847 bytes
    - Viewed (0)
  7. pkg/test/framework/suite_test.go

    		{
    			caller:   "/home/me/go/src/istio.io/istio/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    			caller:   "/home/me/go/src/istio.io/istio.io/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    			caller:   "/home/me/go/src/istio.io/istio/tests/integration/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    			caller:   "/work/some/path/mytest.go",
    			expected: "some_path",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryFeaturePublishingIntegrationTest.groovy

                            requireCapability 'com.acme:mylib-integ-test-fixtures'
                        }
                    }
                }
            """
    
            file("src/integTest/java/MyTest.java") << """
                public class MyTest {
                    @org.junit.jupiter.api.Test
                    public void testSomething() {
                        assert MyFixture.answer() == 42;
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

     *          .includePackage("org.pkg")                               // execute all tests declared the org.pkg package and its sub-packages
     *          .includeClass("com.MyTest")                              // execute the MyTest test class
     *          .includeMethod("com.OtherTest", Arrays.asList("verify")) // execute the OtherTest.verify() test method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue50372.go

            for range s {}
            for i = range s {}
            for i, j = range s {}
            for i, j, k /* ERRORx "range clause permits at most two iteration variables|at most 2 expressions" */ = range s {}
            for i, j, k, l /* ERRORx "range clause permits at most two iteration variables|at most 2 expressions" */ = range s {}
    }
    
    func _(s chan int) {
            var i, j, k, l int
            _, _, _, _ = i, j, k, l
    
            for range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1K bytes
    - Viewed (0)
Back to top