Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 152 for svctest (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/vcstest/README

    cmd/go/internal/vcweb.
    
    To see the conditions and commands available for these scripts, run:
    
    	go test cmd/go/internal/vcweb -v --run=TestHelp
    
    To host these scripts in a standalone server, run:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 487 bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/echotest.go

    	deploymentPairSetup        []svcPairSetupFn
    	destinationDeploymentSetup []dstSetupFn
    
    	cfg *config.Builder
    }
    
    // New creates a *T using the given applications as sources and destinations for each subtest.
    func New(ctx framework.TestContext, instances echo.Instances) *T {
    	s, d := make(echo.Instances, len(instances)), make(echo.Instances, len(instances))
    	copy(s, instances)
    	copy(d, instances)
    	t := &T{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 23:26:33 UTC 2022
    - 1.8K 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