Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_annotations (0.38 sec)

  1. tests/test_pydanticv2_dataclasses_uuid_stringified_annotations.py

            "name": "Island In The Moon",
            "price": 12.99,
            "description": "A place to be be playin' and havin' fun",
            "tags": ["breater"],
        }
    
    
    client = TestClient(app)
    
    
    def test_annotations():
        response = client.get("/item")
        assert response.status_code == 200, response.text
        assert response.json() == snapshot(
            {
                "id": IsUUID(),
                "name": "Island In The Moon",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java

          throws ConflictingRequirementsException {
        TesterRequirements requirements = new TesterRequirements();
    
        Iterable<Annotation> testerAnnotations = getTesterAnnotations(classOrMethod);
        for (Annotation testerAnnotation : testerAnnotations) {
          TesterRequirements moreRequirements = buildTesterRequirements(testerAnnotation);
          incorporateRequirements(requirements, moreRequirements, testerAnnotation);
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 14:50:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top