Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for MainWithXCTestSourceElement (0.36 sec)

  1. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MainWithXCTestSourceElement.java

    import org.gradle.integtests.fixtures.SourceFile;
    import org.gradle.test.fixtures.file.TestFile;
    
    import java.util.List;
    
    public abstract class MainWithXCTestSourceElement extends XCTestSourceElement {
        public MainWithXCTestSourceElement(String projectName) {
            super(projectName);
        }
    
        public abstract SwiftSourceElement getMain();
        public abstract XCTestSourceElement getTest();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithBothLibraryLinkageIntegrationTest.groovy

     * 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
    
    class SwiftXCTestComponentWithBothLibraryLinkageIntegrationTest extends AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithApplicationIntegrationTest.groovy

     * 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
    
    class SwiftXCTestComponentWithApplicationIntegrationTest extends AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithSharedLibraryLinkageIntegrationTest.groovy

     * 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
    
    class SwiftXCTestComponentWithSharedLibraryLinkageIntegrationTest extends AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestComponentWithStaticLibraryLinkageIntegrationTest.groovy

     * 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
    
    class SwiftXCTestComponentWithStaticLibraryLinkageIntegrationTest extends AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest {
        @Override
    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/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibWithCppDepXCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftLibWithCppDepXCTest extends MainWithXCTestSourceElement {
        final SwiftLibWithCppDep main
        final XCTestSourceElement test
    
        SwiftLibWithCppDepXCTest(GreeterElement cppGreeter) {
            this("greeter", cppGreeter)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithXCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftAppWithXCTest extends MainWithXCTestSourceElement implements AppElement {
        final SwiftApp main = new SwiftApp()
        final XCTestSourceElement test = new SwiftAppTest(main, main.greeter, main.sum, main.multiply)
    
        String expectedOutput = main.expectedOutput
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 996 bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift3WithXCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class Swift3WithXCTest extends MainWithXCTestSourceElement {
        final Swift3 main
        final XCTestSourceElement test
    
        Swift3WithXCTest(String projectName) {
            super(projectName)
            this.main = new Swift3(projectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4WithXCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class Swift4WithXCTest extends MainWithXCTestSourceElement {
        final Swift4 main
        final XCTestSourceElement test
    
        Swift4WithXCTest(String projectName) {
            super(projectName)
            this.main = new Swift4(projectName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/AbstractSwiftXCTestComponentWithTestedComponentIntegrationTest.groovy

    import org.gradle.language.swift.SwiftVersion
    import org.gradle.nativeplatform.fixtures.RequiresInstalledToolChain
    import org.gradle.nativeplatform.fixtures.ToolChainRequirement
    import org.gradle.nativeplatform.fixtures.app.MainWithXCTestSourceElement
    import org.gradle.nativeplatform.fixtures.app.Swift3WithSwift4XCTest
    import org.gradle.nativeplatform.fixtures.app.Swift4WithSwift3XCTest
    import org.gradle.nativeplatform.fixtures.app.Swift5WithSwift4XCTest
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top