Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 79 for svctest (0.55 sec)

  1. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

    import org.gradle.nativeplatform.tasks.LinkMachOBundle
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestBundle
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestExecutable
    import org.gradle.nativeplatform.test.xctest.SwiftXCTestSuite
    import org.gradle.nativeplatform.test.xctest.tasks.InstallXCTestBundle
    import org.gradle.nativeplatform.test.xctest.tasks.XCTest
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

            return true;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/junit/runner/RunWith;".equals(desc)) {
                setTest(true);
            }
    
            return null;
        }
    
        @Override
        public MethodVisitor visitMethod(int access, String name, String desc, String signature, String[] exceptions) {
            if (!isTest()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/net/internal/socktest/switch_stub.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build plan9
    
    package socktest
    
    // Sockets maps a socket descriptor to the status of socket.
    type Sockets map[int]Status
    
    func familyString(family int) string { return "<nil>" }
    
    func typeString(sotype int) string { return "<nil>" }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 455 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.png

    xctest-task-graph.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/xctest-task-graph.dot

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // dot -Tpng src/docs/userguide/img/xctest-task-graph.dot > src/docs/userguide/img/xctest-task-graph.png
    digraph xctestTaskGraph {
      graph [ dpi = 100, fontname="Sans"];
      node [fontname = "Sans"];
      edge [fontname = "Sans"];
      node [shape=rectangle, fixedsize=true, width=2.5, height=0.5];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/net/internal/socktest/switch_posix.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !plan9
    
    package socktest
    
    import (
    	"fmt"
    	"syscall"
    )
    
    func familyString(family int) string {
    	switch family {
    	case syscall.AF_INET:
    		return "inet4"
    	case syscall.AF_INET6:
    		return "inet6"
    	case syscall.AF_UNIX:
    		return "local"
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/SwiftAppWithSingleXCTestSuite.groovy

                    final delegate = new SwiftAppTest(main, main.greeter, main.sum, main.multiply)
    
                    @Override
                    List<XCTestCaseElement> getTestCases() {
                        return delegate.sumTest.testCases + delegate.greeterTest.testCases + delegate.multiplyTest.testCases
                    }
                }.withTestableImport(main.moduleName)]
            }
        }
    
        String expectedOutput = main.expectedOutput
    
    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. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

                }
            }
    
            named("jsTest") {
                dependencies {
                    implementation(kotlin("test-js"))
                }
            }
    
            named("jvmTest") {
                dependencies {
                    implementation(kotlin("test-junit5"))
                    implementation("org.junit.jupiter:junit-jupiter:5.10.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/testing/match_test.go

    	{"#", "x/#"},
    	{"#", "x/##01"},
    
    	{"t", "x/t"},
    	{"t", "x/t#01"},
    	{"t", "x/t#02"},
    	{"t#00", "x/t#00"}, // Explicit "#00" doesn't conflict with the unsuffixed first subtest.
    
    	{"a#01", "x/a#01"},    // user has subtest with this name.
    	{"a", "x/a"},          // doesn't conflict with this name.
    	{"a", "x/a#02"},       // This string is claimed now, so resume
    	{"a", "x/a#03"},       // with counting.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

            addEmptyTestClass("AyTest")
            addEmptyTestClass("AÆTest")
            addEmptyTestClass("ACTest")
            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
            addEmptyTestClass("AbTest")
    
            String expectedTestMessages = """
    executed Test ${maybeParentheses('test')}(AATest)
    executed Test ${maybeParentheses('test')}(ACTest)
    executed Test ${maybeParentheses('test')}(AZTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top