Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for sizeclass (0.27 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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractAutoTestedSamplesTest.groovy

            // default is no-op
        }
    
        /**
         * Useful for quick dev cycles when you need to run test against a single file.
         *
         * @param includes ant-like includes, e.g. '**\SomeClass.java'
         */
        void includeOnly(String includes) {
            util.includes = includes
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/ClassLoaderUtilTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.lang;
    
    import static org.codelibs.core.TestUtil.sameClass;
    import static org.hamcrest.CoreMatchers.is;
    import static org.hamcrest.CoreMatchers.not;
    import static org.hamcrest.CoreMatchers.notNullValue;
    import static org.hamcrest.CoreMatchers.sameInstance;
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. maven-core/src/test/projects/plugin-manager/project-with-plugin-classpath-ordering/sub/pom.xml

            </dependencies>
            <executions>
              <execution>
                <id>load</id>
                <phase>validate</phase>
                <configuration>
                  <resourcePaths>org/apache/maven/its/mng3906/SomeClass.class</resourcePaths>
                  <pluginClassLoaderOutput>target/pcl.properties</pluginClassLoaderOutput>
                </configuration>
                <goals>
                  <goal>load</goal>
                </goals>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/BuildScriptTransformerSpec.groovy

            "// ignore me" | _
            "\r\n\t   "    | _
        }
    
        def "class declarations are not considered imperative code"() {
            given:
            def scriptData = parse("""
                class SomeClass {
                    String a = 123
                    def doStuff() {
                        int i = 9
                    }
                }
            """)
    
            expect:
            !scriptData.runDoesSomething
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top