(thread_id)
| 60 | errors = [] |
| 61 | |
| 62 | def serialize_deserialize(thread_id): |
| 63 | try: |
| 64 | person = Person(name=f"Person{thread_id}", age=20 + thread_id) |
| 65 | data = fory.serialize(person) |
| 66 | result = fory.deserialize(data) |
| 67 | results.append((thread_id, result)) |
| 68 | except Exception as e: |
| 69 | errors.append((thread_id, e)) |
| 70 | |
| 71 | threads = [] |
| 72 | for i in range(10): |
nothing calls this directly
no test coverage detected