Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for svctest (0.15 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ModuleTest.groovy

        final customSourceFolders = [path('file://$MODULE_DIR$/src'), path('file://$MODULE_DIR$/generated-src')] as LinkedHashSet
        final customTestSourceFolders = [path('file://$MODULE_DIR$/srcTest'), path('file://$MODULE_DIR$/generated-test-src')] as LinkedHashSet
        final customResourceFolders = [path('file://$MODULE_DIR$/resource'), path('file://$MODULE_DIR$/generated-resource')] as LinkedHashSet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftApplicationProjectInitDescriptor.java

                    "Apply the swift-application plugin to add support for building Swift executables",
                    "swift-application")
                .plugin("Apply the xctest plugin to add support for building and running Swift test executables (Linux) or bundles (macOS)",
                    "xctest")
                .block("Set the target operating system and architecture for this application", "application", this::configureTargetMachineDefinition);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftLibraryProjectInitDescriptor.java

                    "Apply the swift-library plugin to add support for building Swift libraries",
                    "swift-library")
                .plugin("Apply the xctest plugin to add support for building and running Swift test executables (Linux) or bundles (macOS)",
                    "xctest")
                .block(null, "library", this::configureTargetMachineDefinition);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. src/testing/helperfuncs_test.go

    	fn := func(msg string) {
    		t.Helper()
    		t.Error(msg)
    	}
    	fn("4")
    
    	t.Run("sub", func(t *testing.T) {
    		helper(t, "5")
    		notHelperCallingHelper(t, "6")
    		// Check that calling Helper from inside a subtest entry function
    		// works as if it were in an ordinary function call.
    		t.Helper()
    		t.Error("7")
    	})
    
    	// Check that right caller is reported for func passed to Cleanup when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:24:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/build.gradle.kts

    plugins {
        id("myproject.xctest-conventions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/swift/testReport/groovy/core/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(CoreTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/src/test/swift/LinuxMain.swift

    import XCTest
    
    XCTMain([
        testCase(UtilTest.allTests)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/TestClassVisitor.java

            return className;
        }
    
        public String getSuperClassName() {
            return superClassName;
        }
    
        public boolean isTest() {
            return test;
        }
    
        protected void setTest(boolean test) {
            this.test = test;
        }
    
        public boolean isAbstract() {
            return isAbstract;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/src/test/swift/SomeIntegTest.swift

    import XCTest
    
    class SomeIntegTest: XCTestCase {
        public static var allTests = [
            ("test1", test1),
            ("test2", test2)
        ]
        func test1() {}
        func test2() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 183 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/src/test/swift/SomeOtherTest.swift

    import XCTest
    
    class SomeOtherTest: XCTestCase {
        public static var allTests = [
            ("testQuickUiCheck", testQuickUiCheck),
            ("testQuickServerCheck", testQuickServerCheck)
        ]
        func testQuickUiCheck() {}
        func testQuickServerCheck() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
Back to top