(schema_file_path, data_file_path)
| 202 | |
| 203 | @cross_language_test |
| 204 | def test_serialization_with_schema(schema_file_path, data_file_path): |
| 205 | from pyfory.format import Schema |
| 206 | |
| 207 | with open(schema_file_path, "rb") as f: |
| 208 | schema_bytes = f.read() |
| 209 | schema = Schema.from_bytes(schema_bytes) |
| 210 | debug_print("deserialized schema", schema) |
| 211 | test_serialization_without_schema(data_file_path, schema) |
| 212 | |
| 213 | |
| 214 | @cross_language_test |
nothing calls this directly
no test coverage detected