Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for expected_title (0.05 seconds)

  1. tests/test_request_params/test_path/test_required_str.py

            ),
        ],
    )
    def test_schema(path: str, expected_name: str, expected_title: str):
        assert app.openapi()["paths"][path]["get"]["parameters"] == snapshot(
            [
                {
                    "required": True,
                    "schema": {"title": Is(expected_title), "type": "string"},
                    "name": Is(expected_name),
                    "in": "path",
                }
            ]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Feb 09 15:35:43 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/it/admin/DocumentsTests.java

            // Verify document content
            for (int i = 0; i < 5; i++) {
                final String expectedTitle = NAME_PREFIX + i;
                boolean found = docs.stream().anyMatch(doc -> expectedTitle.equals(doc.get("title")));
                assertTrue(found, "Document with title " + expectedTitle + " should exist");
            }
    
            logger.info("[END] testBulkCreate");
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
Back to Top