Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for test_annotations (0.07 seconds)

  1. tests/test_pydanticv2_dataclasses_uuid_stringified_annotations.py

            "name": "Island In The Moon",
            "price": 12.99,
            "description": "A place to 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",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 16 10:16:48 GMT 2026
    - 1.1K bytes
    - Click Count (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);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 12.4K bytes
    - Click Count (0)
  3. 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);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Dec 21 14:50:24 GMT 2024
    - 12.4K bytes
    - Click Count (0)
Back to Top