Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for sizeclass (0.4 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            failingTestDetails.assertDuration("1.000s")
            failingTestDetails.assertFailed()
    
            failingClassFile.assertHasFailure('failed', 'something failed\n\nthis is the failure\nat someClass\n')
    
            where:
            numThreads << [1, 4]
        }
    
        def "aggregate same tests run with different results - #numThreads parallel thread(s)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

        /**
         * Returns the display granularity of the events to be logged. For example, if set to 0, a method-level event will be displayed as "Test Run &gt; Test Worker x &gt; org.SomeClass &gt; org.someMethod". If
         * set to 2, the same event will be displayed as "org.someClass &gt; org.someMethod". <p>-1 denotes the highest granularity and corresponds to an atomic test.
         *
         * @return the display granularity of the events to be logged
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                }
            }
        }
    
        def "Can handle a published platform dependency that is resolved to a local platform project"() {
            given:
            file("src/main/java/SomeClass.java") << "public class SomeClass {}"
            platformModule('')
            mavenHttpRepo.module("org.test", "platform", "1.9").asGradlePlatform().publish()
            def moduleA = mavenHttpRepo.module("org.test", "b", "1.9").withModuleMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-development/src/test/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginTest.groovy

            where:
            contents                             | expectedPluginImpl | expectedEmpty
            'implementation-class=xxx.SomeClass' | 'xxx.SomeClass'    | false
            'implementation-class='              | ''                 | false
            ''                                   | null               | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationDependenciesBuildOperationIntegrationTest.groovy

                dependencies {
                    testFixturesApi('org.foo:stuff:1.0')
                }
            """
            file("fixtures/src/testFixtures/java/SomeClass.java") << "class SomeClass {}"
            file("src/test/java/SomeTest.java") <<
                """
                public class SomeTest {
                    @org.junit.Test
                    public void test() { }
                }
    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. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandlerTest.groovy

            "/*\n\n*/"                    | _
            "import org.gradle.ignored.*" | _
        }
    
        def testCompileScriptToDirWithClassDefinitionOnlyScript() {
            def scriptText = "class SomeClass {}"
            final ScriptSource scriptSource = scriptSource(scriptText)
            def sourceHashCode = hashFor(scriptText)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 08:24:10 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    instead of: * <pre>assertThat(cheese, equalTo(smelly))</pre> */ public static <T> org.hamcrest.Matcher<T> is(org.hamcrest.Matcher<T> matcher) { return org.hamcrest.core.Is.<T>is(matcher); } /** * A shortcut to the frequently used <code>is(instanceOf(SomeClass.class))</code>. * <p/> * For example: * <pre>assertThat(cheese, is(Cheddar.class))</pre> * instead of: * <pre>assertThat(cheese, is(instanceOf(Cheddar.class)))</pre> * * @deprecated use isA(Class<T> type) instead. */ public static <T> org.hamcrest.Matcher<T>...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 31.9K bytes
    - Viewed (0)
Back to top