Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for someTest (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitCategoriesOrTagsCoverageIntegrationSpec.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 14:54:49 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ClientTest.groovy

            then:
            def ex = thrown(ResourceException)
            ex.message.startsWith("Could not get resource 'https://somehost/file.txt'")
        }
    
        def "should include uri when file not found"() {
            AmazonS3Client amazonS3Client = Mock()
            URI uri = new URI("https://somehost/file.txt")
            S3Client s3Client = new S3Client(amazonS3Client, s3ConnectionProperties)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pilot/pkg/model/service_test.go

    					testCase.other,
    					testCase.shouldEq,
    				)
    			}
    		})
    	}
    }
    
    func BenchmarkBuildSubsetKey(b *testing.B) {
    	for n := 0; n < b.N; n++ {
    		_ = BuildSubsetKey(TrafficDirectionInbound, "v1", "someHost", 80)
    	}
    }
    
    func BenchmarkServiceDeepCopy(b *testing.B) {
    	svc1 := buildHTTPService("test.com", visibility.Public, "10.10.0.1", "default", 80, 8080, 9090, 9999)
    	svc1.ServiceAccounts = []string{"sa1"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *   ...
     * }
     * </pre>
     *
     * <p>No cascading checks are performed against the return values of methods unless the method is a
     * static factory method. Neither are semantics of mutation methods such as {@code
     * someList.add(obj)} checked. For more detailed discussion of supported and unsupported cases, see
     * {@link #testEquals}, {@link #testNulls} and {@link #testSerializable}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top