Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 208 for xcTest (0.27 sec)

  1. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/SwiftXCTestBinary.java

     */
    
    package org.gradle.nativeplatform.test.xctest;
    
    import org.gradle.api.file.Directory;
    import org.gradle.api.file.RegularFile;
    import org.gradle.api.provider.Provider;
    import org.gradle.language.swift.SwiftBinary;
    import org.gradle.nativeplatform.tasks.AbstractLinkTask;
    import org.gradle.nativeplatform.test.TestComponent;
    import org.gradle.nativeplatform.test.xctest.tasks.XCTest;
    
    /**
     * An test binary built from Swift source.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestDependenciesIntegrationTest.groovy

        @Override
        protected void makeComponentWithLibrary() {
            buildFile << """
                apply plugin: 'xctest'
                project(':lib') {
                    apply plugin: 'swift-library'
                }
    """
            file("src/test/swift/Test.swift") << """
                import Lib
                import XCTest
    
                class Test {
                    var util = Util()
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestErrorHandlingIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.integtests.fixtures.DefaultTestExecutionResult
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.integtests.fixtures.TestExecutionResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestIntegrationTest.groovy

        }
    
        @Override
        String[] getTasksToBuildAndRunUnitTest() {
            return tasks.test.allToInstall + [":xcTest"]
        }
    
        @Override
        protected String getTestComponentDsl() {
            return "xctest"
        }
    
        @Override
        protected String getComponentUnderTestDsl() {
            return null
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestCppInteroperabilityIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
    import org.gradle.language.swift.AbstractSwiftMixedLanguageIntegrationTest
    import org.gradle.language.swift.SwiftTaskNames
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest
    
    
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.language.swift.AbstractSwiftComponentIntegrationTest
    import org.gradle.language.swift.SwiftTaskNames
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithoutComponentIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest
    
    import org.gradle.internal.os.OperatingSystem
    import org.gradle.nativeplatform.fixtures.app.SwiftXCTest
    import org.gradle.nativeplatform.fixtures.app.XCTestSourceElement
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top