Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for MainWithXCTestSourceElement (0.48 sec)

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class Swift3WithSwift4XCTest extends MainWithXCTestSourceElement {
        final Swift3 main
        final XCTestSourceElement test
    
        Swift3WithSwift4XCTest(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)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5WithXCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class Swift5WithXCTest extends MainWithXCTestSourceElement {
        final Swift5 main
        final XCTestSourceElement test
    
        Swift5WithXCTest(String projectName) {
            super(projectName)
            this.main = new Swift5(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)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithLibrariesAndXCTest.groovy

    import com.google.common.collect.Iterables
    import com.google.common.collect.Lists
    import org.gradle.integtests.fixtures.SourceFile
    
    class SwiftAppWithLibrariesAndXCTest extends MainWithXCTestSourceElement implements AppElement {
        final SwiftAppWithLibraries app = new SwiftAppWithLibraries()
        final SwiftSourceElement main = app.application
        final SwiftSum sum = new SwiftSum()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4WithSwift3XCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class Swift4WithSwift3XCTest extends MainWithXCTestSourceElement {
        final Swift4 main
        final XCTestSourceElement test
    
        Swift4WithSwift3XCTest(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)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift5WithSwift4XCTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class Swift5WithSwift4XCTest extends MainWithXCTestSourceElement {
        final Swift5 main
        final XCTestSourceElement test
    
        Swift5WithSwift4XCTest(String projectName) {
            super(projectName)
            this.main = new Swift5(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)
  6. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftLibWithXCTest.groovy

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

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftAppWithSingleXCTestSuite extends MainWithXCTestSourceElement implements AppElement {
        final SwiftApp main = new SwiftApp()
        final XCTestSourceElement test = new XCTestSourceElement(main.projectName) {
            @Override
            List<XCTestSourceFileElement> getTestSuites() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftSingleFileLibWithSingleXCTestSuite.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.nativeplatform.fixtures.app
    
    class SwiftSingleFileLibWithSingleXCTestSuite extends MainWithXCTestSourceElement {
        final SwiftSingleFileLib main = new SwiftSingleFileLib()
        final XCTestSourceElement test = new XCTestSourceElement(main.projectName) {
            @Override
            List<XCTestSourceFileElement> getTestSuites() {
    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