Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,750 for Assert1 (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/component/DefaultSoftwareComponentContainerIntegrationTest.groovy

                }
    
                task verify {
                    assert components.first.name == "first"
                    assert components.first.value.get() == 1
                    assert components.first instanceof DefaultTestComponent
    
                    assert components.second.name == "second"
                    assert components.second.value.get() == 2
                    assert components.second instanceof DefaultTestComponent
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 14 22:59:22 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/mux/pathrecorder_test.go

    	assert.Equal(t, first, 1)
    	assert.Equal(t, resp.StatusCode, http.StatusNotFound)
    
    	c.HandleFunc("/nonswagger", func(http.ResponseWriter, *http.Request) {
    		second = second + 1
    	})
    	assert.Contains(t, c.ListedPaths(), "/nonswagger")
    	resp, _ = http.Get(s.URL + "/nonswagger")
    	assert.Equal(t, first, 1)
    	assert.Equal(t, second, 1)
    	assert.Equal(t, resp.StatusCode, http.StatusOK)
    }
    
    func TestPrefixHandlers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 16:15:13 UTC 2017
    - 4.4K bytes
    - Viewed (0)
  3. tests/test_query.py

        assert response.status_code == 200
        assert response.json() == "foo bar"
    
    
    def test_query_param_query_50():
        response = client.get("/query/param?query=50")
        assert response.status_code == 200
        assert response.json() == "foo bar 50"
    
    
    def test_query_param_required():
        response = client.get("/query/param-required")
        assert response.status_code == 422
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. test/string_lit.go

    			`\000\123\x00\xca\xFE\u0123\ubabe\U0000babe` +
    			`\x\u\U\`
    
    	assert("", ``, "empty")
    	assert(" ", " ", "blank")
    	assert("\x61", "a", "lowercase a")
    	assert("\x61", `a`, "lowercase a (backquote)")
    	assert("\u00e4", "ä", "a umlaut")
    	assert("\u00e4", `ä`, "a umlaut (backquote)")
    	assert("\u672c", "本", "nihon")
    	assert("\u672c", `本`, "nihon (backquote)")
    	assert("\x07\x08\x0c\x0a\x0d\x09\x0b\x5c\x22",
    		"\a\b\f\n\r\t\v\\\"",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 13 01:17:02 UTC 2013
    - 3.6K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

                            assert components*.name == ["sampleLib"]
                            assert components.withType(ModelElement)*.name == ["sampleLib"]
                            assert components.withType(ComponentSpec)*.name == ["sampleLib"]
                            assert components.withType($componentSpecType)*.name == ["sampleLib"]
                            assert components.withType(SampleComponentSpec)*.name == ["sampleLib"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_security/test_tutorial005_an.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Incorrect username or password"}
    
    
    def test_no_token():
        response = client.get("/users/me")
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_security/test_tutorial005_an_py39.py

        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "Incorrect username or password"}
    
    
    @needs_py39
    def test_no_token(client: TestClient):
        response = client.get("/users/me")
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            then:
            1 * listener.finished(_) >> { BuildOperationFinishedNotification n ->
                assert n.notificationOperationId == d1.id
                assert n.notificationOperationResult == 10
                assert n.notificationOperationFailure == null
                assert n.notificationOperationDetails.is(d1.details)
                assert n.notificationOperationFinishedTimestamp == 10
            }
    
            // operation with no details
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            this.testDirectoryProvider = testDirectoryProvider;
        }
    
        /**
         * Locates the resource with the given name, relative to the current class that declared the current test method.
         *
         * Also asserts that the resource exists.
         */
        public TestFile getResource(String name) {
            assertNotNull(declaringTestClass);
            TestFile file = findResource(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    	assert.Nil(c0.Rootfs)
    	assert.Nil(c0.Logs)
    	assert.Nil(c0.Accelerators)
    	assert.Nil(c0.UserDefinedMetrics)
    	c1 := containerStatsMap[cName1]
    	assert.Equal(container1.CreatedAt, c1.StartTime.UnixNano())
    	checkCRICPUAndMemoryStats(assert, c1, infos[container1.ContainerStatus.Id].Stats[0])
    	assert.Nil(c1.Rootfs)
    	assert.Nil(c1.Logs)
    	assert.Nil(c1.Accelerators)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top