Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for someTest (0.28 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

            outputContains "START [Test method pass(SomeTest)] [pass]\n"
            outputContains "FINISH [Test method pass(SomeTest)] [pass] [null]\n"
            outputContains "START [Test method fail(SomeTest)] [fail]\n"
            outputContains "FINISH [Test method fail(SomeTest)] [fail] [java.lang.AssertionError]\n"
            outputContains "START [Test method knownError(SomeTest)] [knownError]\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                }
            """.stripIndent()
            file('src/test/java/org/gradle/SomeTest.java') << """
                package org.gradle;
                public class SomeTest extends AbstractTest {
                }
            """.stripIndent()
            file('src/test/java/org/gradle/SomeTest2.java') << """
                package org.gradle;
                public class SomeTest2 extends AbstractTest {
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                additionalData.asMap == ['requestedPath' : ':someTest']
            }
            failure.assertHasDescription("Cannot locate tasks that match ':someTest' as task 'someTest' not found in root project 'test'. Some candidates are: 'someTask'.")
            failure.assertHasResolutions(
                GET_TASKS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/logging/LoggingBuildOperationProgressIntegTest.groovy

            settingsFile << """
                rootProject.name = 'root'
            """
    
            // add some more progress events
            file('src/test/java/SomeTest.java') << """
                public class SomeTest{
                    @org.junit.Test
                    public void test1(){}
    
                    @org.junit.Test
                    public void test2(){}
    
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                }
            """
            file("fixtures/src/testFixtures/java/SomeClass.java") << "class SomeClass {}"
            file("src/test/java/SomeTest.java") <<
                """
                public class SomeTest {
                    @org.junit.Test
                    public void test() { }
                }
                """
    
            when:
            succeeds ':test'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. android/pom.xml

      <packaging>pom</packaging>
      <name>Guava Maven Parent</name>
      <description>Parent for guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <properties>
        <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
        <test.include>%regex[.*.class]</test.include>
        <truth.version>1.4.2</truth.version>
        <jsr305.version>3.0.2</jsr305.version>
        <checker.version>3.43.0</checker.version>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pom.xml

      <packaging>pom</packaging>
      <name>Guava Maven Parent</name>
      <description>Parent for guava artifacts</description>
      <url>https://github.com/google/guava</url>
      <properties>
        <!-- Override this with -Dtest.include="**/SomeTest.java" on the CLI -->
        <test.include>%regex[.*.class]</test.include>
        <truth.version>1.4.2</truth.version>
        <jsr305.version>3.0.2</jsr305.version>
        <checker.version>3.43.0</checker.version>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            configurationContainer.create('newConf')
            Configuration configuration = configurationContainer.newConf {
                description = someDesc
            }
    
            then:
            configuration.getDescription() == someDesc
        }
    
        def makesExistingConfigurationAvailableAsConfigureMethodWhenConfiguringSelf() {
            when:
            String someDesc = 'desc1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

        @Test
        void testExternalURL() {
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://somehost")));
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://somehost:9090/somepath")));
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "ftp://somehost")));
            assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://192.168.101.1")));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            def id = DefaultModuleVersionIdentifier.newId("group", name, "1.2")
            IvyArtifactName artifactStub = Mock() {
                getName() >> name
                getType() >> "someType"
                getExtension() >> "someExt"
                getClassifier() >> null
            }
            def calculatedValueContainerFactory = TestUtil.calculatedValueContainerFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top