Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expectedCases (0.48 sec)

  1. pkg/kubelet/server/server_test.go

    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    
    	// method:path -> has coverage
    	expectedCases := map[string]bool{}
    
    	// Test all the non-web-service handlers
    	for _, path := range fw.serverUnderTest.restfulCont.RegisteredHandlePaths() {
    		expectedCases["GET:"+path] = false
    		expectedCases["POST:"+path] = false
    	}
    
    	// Test all the generated web-service paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

                import org.junit.*
                class ThingTest {
                    @Test void ok() { new Thing() }
                }
            """
    
            and:
            def expectedTasks = [
                ":compileJava", ":compileGroovy", ":processResources", ":classes", ":jar", ":assemble",
                ":compileTestJava", ":compileTestGroovy", ":processTestResources", ":testClasses", ":test", ":check",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            then:
            verifyTaskIds()
            def expectedTasks = [
                withPath(':buildSrc', ':sub:jar'),
                withPath(':buildSrc', ':jar'),
                withPath(':comp', ':sub:build'),
                withPath(':comp', ':build'),
                withPath(':', ':sub:build'),
                withPath(':', ':build')
            ]
            expectedTasks.each {
                verifyTaskDetails(RegisterTaskBuildOperationType, it)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top