Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OtherTest (0.16 sec)

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

            "no options"     | ["test"]                                                 | ["Foo1Test", "Foo2Test", "BarTest", "OtherTest"] | ["bar", "pass1"]  | ["bar", "pass2"]  | ["bar"]          | ["bar", "pass3"]
            "pass and Other" | ["test", "--tests", "*.pass1", "--tests", "*OtherTest*"] | ["Foo1Test", "OtherTest"]                        | ["pass1"]         | []                | []               | ["bar", "pass3"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestExecutionIntegrationTest.groovy

                    public void anotherOk() {
                    }
                }
            """.stripIndent()
    
            file('src/test/java/org/gradle/OtherTest.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
                public class OtherTest {
                    @Test
                    public void ok() throws Exception {
                    }
                }
            """.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. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["com.FooTest***slow*"]  | "com.FooTest"             | "slowMethod"          | true
            ["com.FooTest***slow*"]  | "com.FooTest2"            | "aslow"               | true
            ["com.FooTest***slow*"]  | "com.FooTest.OtherTest"   | "slow"                | true
            ["com.FooTest***slow*"]  | "FooTest"                 | "slowMethod"          | false
        }
    
        def "matches any of input"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top