Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 208 for xcTest (0.33 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelectionTest.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.internal.execution
    
    import spock.lang.Specification
    import spock.lang.Subject
    
    @Subject(XCTestSelection)
    class XCTestSelectionTest extends Specification {
        def "includes all tests when no filter provided"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

        }
    
        protected TestFile staticLib(String str) {
            file(OperatingSystem.current().getStaticLibraryName(str))
        }
    
        protected TestFile xctest(String str) {
            file(str + ".xctest")
        }
    
        protected XcodeProjectPackage xcodeProject(String path) {
            xcodeProject(file(path))
        }
    
        protected XcodeProjectPackage xcodeProject(TestFile bundle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

                        }
                    }
                }
            """
            buildFile << """
                apply plugin: 'swift-library'
                apply plugin: 'xcode'
                apply plugin: 'xctest'
    
                dependencies {
                    testImplementation "org.test:greeter:latest.integration"
                }
            """
            test.writeToProject(testDirectory)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

    import org.gradle.language.swift.plugins.SwiftApplicationPlugin;
    import org.gradle.language.swift.plugins.SwiftLibraryPlugin;
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestSuite;
    import org.gradle.nativeplatform.test.xctest.plugins.XCTestConventionPlugin;
    import org.gradle.plugins.ide.internal.IdeArtifactRegistry;
    import org.gradle.plugins.ide.internal.IdePlugin;
    import org.gradle.util.internal.CollectionUtils;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceFileElement.java

        private final Set<String> testableImports = new LinkedHashSet<>();
    
        public XCTestSourceFileElement(String testSuiteName) {
            this.testSuiteName = testSuiteName;
            withImport("XCTest");
        }
    
        @Override
        public int getFailureCount() {
            int result = 0;
            for (XCTestCaseElement element : getTestCases()) {
                if (element.isExpectFailure()) {
                    result++;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.tasks.RunTestExecutable</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.xctest.tasks.XCTest</td>
                </tr>
            </table>
        </section>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerSwiftBuildExportIntegrationTest.groovy

            given:
            buildFile << """
                plugins {
                    id 'swiftpm-export'
                    id 'swift-library'
                    id 'xctest'
                }
    """
            def lib = new SwiftLib()
            lib.writeToProject(testDirectory)
            file("src/test/swift/test.swift") << "// test"
    
            when:
            run("generateSwiftPmManifest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerIncrementalExportIntegrationTest.groovy

            given:
            swiftBuild()
    
            when:
            buildFile << """
                allprojects {
                    apply plugin: 'xcode'
                    apply plugin: 'xctest'
                }
            """
            file("app/src/test/swift/test.swift") << "// test"
            file("lib/src/test/swift/test.swift") << "// test"
            run("generateSwiftPmManifest")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

                                   kotlintest
                                   scalatest
                                   spock
                                   testng
                                   xctest
    
         --type     Set the type of project to generate.
                    Available values are:
                         basic
                         cpp-application
                         cpp-library
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

                        implementation project(':greeter')
                    }
                }
                project(':greeter') {
                    apply plugin: 'swift-library'
                    apply plugin: 'xctest'
                }
            """
            def app = new SwiftAppWithLibraryTest()
            app.library.writeToProject(file("greeter"))
            app.executable.writeToProject(file("app"))
            succeeds("xcode")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top