Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 208 for xcTest (0.1 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.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.internal.os.OperatingSystem
    import org.gradle.language.swift.SwiftVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestWithApplicationDependenciesIntegrationTest.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.language.AbstractNativeUnitTestComponentDependenciesIntegrationTest
    import org.gradle.language.swift.SwiftTaskNames
    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. 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)
  7. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Model classes for the XCTest plugins.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 713 bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/plugins/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Plugins for XCTest testing.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 711 bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/SwiftXCTestBundle.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest;
    
    import org.gradle.api.provider.Provider;
    import org.gradle.nativeplatform.tasks.LinkMachOBundle;
    
    /**
     * An XCTest executable for tests implemented in Swift.
     *
     * @since 4.5
     */
    public interface SwiftXCTestBundle extends SwiftXCTestBinary {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithApplicationIntegrationTest.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.nativeplatform.fixtures.app.MainWithXCTestSourceElement
    import org.gradle.nativeplatform.fixtures.app.SwiftAppWithXCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top