Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,099 for myHost (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

                println("script log statement")
            """
            file("src/test/java/my/MyTest.java") << """
                package my;
                import org.junit.Test;
                public class MyTest {
                    @Test public void test() {}
                }
            """
    
            when:
            runTestClasses("my.MyTest")
    
            then:
            outputContains("script log statement")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

            succeeds("mytest")
    
            then:
            def unitTestResults = new JUnitXmlTestExecutionResult(testDirectory, 'build/test-results/mytest')
            unitTestResults.assertTestClassesExecuted('example.UnitTest')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/18622")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  3. subprojects/build-events/src/integTest/groovy/org/gradle/build/event/BuildEventsIntegrationTest.groovy

                gradle.services.get(${BuildEventsListenerRegistry.name}).onTaskCompletion(listener)
            """
            file("src/test/groovy/my/MyTest.groovy") << """
                package my
                import org.gradle.testfixtures.*
                import org.junit.Test
                class MyTest {
                    @Test void test() {
                        def project = ProjectBuilder.builder().build()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLauncherSessionListenerIntegrationTest.groovy

                    testLogging.showStandardStreams = true
                }
            """
            file("src/test/java/com/example/MyTest.java") << """
                package com.example;
    
                public class MyTest {
                    @org.junit.jupiter.api.Test
                    public void myTest() { }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/testing/SerializableTester.java

       * of the same class. For example, if sublists of {@code MyList} instances were serializable,
       * those sublists might implement a private {@code MySubList} type but serialize as a plain {@code
       * MyList} to save space. So long as {@code MyList} has all the public supertypes of {@code
       * MySubList}, this is safe. For these cases, for which {@code reserializeAndAssert} is too
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/SerializableTester.java

       * of the same class. For example, if sublists of {@code MyList} instances were serializable,
       * those sublists might implement a private {@code MySubList} type but serialize as a plain {@code
       * MyList} to save space. So long as {@code MyList} has all the public supertypes of {@code
       * MySubList}, this is safe. For these cases, for which {@code reserializeAndAssert} is too
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressDaemonErrorsCrossVersionSpec.groovy

                test.doLast {
                    ${server.callFromBuild('sync')}
                    Thread.sleep(120000)
                }
            """
    
            file("src/test/java/example/MyTest.java") << """
                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                }
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/testdata/issue25756/plugin/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)
  9. src/cmd/internal/test2json/testdata/issue23036.test

    === RUN   TestActualCase
    --- FAIL: TestActualCase (0.00s)
            foo_test.go:14: Differed.
                    Expected: MyTest:
                    --- FAIL: Test output from other tool
                    Actual: not expected
    FAIL
    exit status 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 20:12:12 UTC 2018
    - 286 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ProgressCrossVersionSpec.groovy

                dependencies { ${testImplementationConfiguration} 'junit:junit:4.13' }
                compileTestJava.options.fork = true
            """
    
            file("src/test/java/example/MyTest.java") << """
                package example;
                public class MyTest {
                    @org.junit.Test public void foo() throws Exception {
                         org.junit.Assert.assertEquals(1, 1);
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top