()
| 251 | """Benchmark complete serialize + deserialize round-trip for single entity.""" |
| 252 | |
| 253 | def roundtrip(): |
| 254 | serialized = serialize_entity_key(single_entity_key, 3) |
| 255 | return deserialize_entity_key(serialized, 3) |
| 256 | |
| 257 | result = benchmark(roundtrip) |
| 258 | assert result == single_entity_key |
nothing calls this directly
no test coverage detected