Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 562 for rctest (0.12 sec)

  1. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/build.gradle.kts

    plugins {
        xctest
    }
    
    // tag::test-filtering[]
    xctest {
        binaries.configureEach {
            runTask.get().filter.includeTestsMatching("SomeIntegTest.*") // or `"Testing.SomeIntegTest.*"` on macOS
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 232 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/swiftXCTest/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'xctest'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    xctest {
        targetMachines = [
            machines.linux.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 248 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/swiftXCTest/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        xctest
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    xctest {
        targetMachines = listOf(machines.linux.x86_64, machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithoutComponentIntegrationTest.groovy

            } else {
                machOBundle("build/exe/test/${componentUnderTest.moduleName}").assertExists()
                file("build/install/test/${componentUnderTest.moduleName}").assertIsFile()
                file("build/install/test/${componentUnderTest.moduleName}.xctest").assertIsDir()
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.groovy

                executable("build/exe/test/${componentUnderTest.test.moduleName}").assertExists()
                installation("build/install/test").assertInstalled()
            } else {
                machOBundle("build/exe/test/${componentUnderTest.test.moduleName}").assertExists()
                file("build/install/test/${componentUnderTest.test.moduleName}").assertIsFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Tasks for XCTest execution.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 709 bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestExecutionResult.groovy

     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.TestExecutionResult
    
    trait XCTestExecutionResult {
        TestExecutionResult getTestExecutionResult() {
            return new DefaultTestExecutionResult(testDirectory, 'build', '', '', 'xcTest')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 965 bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestPluginIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest.plugins
    
    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    class XCTestPluginIntegrationTest extends WellBehavedPluginTest {
        @Override
        String getPluginName() {
            return "xctest"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 874 bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestWithApplicationDependenciesIntegrationTest.groovy

        protected String getProductionComponentDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getRunTestTasks() {
            return [tasks.debug.compile, tasks.test.relocate, tasks.test.allToInstall, ":xcTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [tasks(":lib").debug.allToLink]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/build.gradle

    plugins {
        id 'xctest'
    }
    
    // tag::test-filtering[]
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // include all tests from test class
                filter.includeTestsMatching "SomeIntegTest.*" // or `"Testing.SomeIntegTest.*"` on macOS
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 319 bytes
    - Viewed (0)
Back to top