Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 208 for xcTest (0.1 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

            })
    
            settingsFile << "rootProject.name = 'app'"
            buildFile << """
                apply plugin: 'xctest'
            """
        }
    
        @Override
        protected boolean capturesTestOutput() {
            // The driver application for XCTest behave very differently on macOS and Linux.
            // It was hard to get the desired outcome on macOS and impossible for Linux. It
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithStaticLibraryLinkageIntegrationTest.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.SwiftLibWithXCTest
    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)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestExecuter.java

     * 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 org.gradle.api.internal.tasks.testing.DefaultTestClassRunInfo;
    import org.gradle.api.internal.tasks.testing.TestClassProcessor;
    import org.gradle.api.internal.tasks.testing.TestClassRunInfo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/SwiftXCTestExecutable.java

     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.test.xctest;
    
    import org.gradle.language.nativeplatform.ComponentWithExecutable;
    import org.gradle.language.nativeplatform.ComponentWithInstallation;
    
    /**
     * An XCTest executable for tests implemented in Swift.
     *
     * @since 4.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1004 bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithSharedLibraryLinkageIntegrationTest.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.SwiftLibWithXCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithStaticLibraryLinkageIntegrationTest.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.SwiftLibWithXCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/BuildInitTestFramework.java

        NONE("none"),
        JUNIT("JUnit 4"),
        TESTNG("TestNG"),
        SPOCK("Spock"),
        KOTLINTEST("kotlin.test"),
        SCALATEST("ScalaTest"),
        JUNIT_JUPITER("JUnit Jupiter"),
        XCTEST("XCTest"),
        CPPTest("C++ executable");
    
        public static List<String> listSupported() {
            List<String> result = new ArrayList<>();
            for (BuildInitTestFramework testFramework : values()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 19:41:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithBothLibraryLinkageIntegrationTest.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.SwiftLibWithXCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithApplicationIntegrationTest.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.SwiftAppWithXCTest
    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)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestWithBothLibraryLinkageIntegrationTest.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.SwiftLibWithXCTest
    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