()
| 611 | |
| 612 | |
| 613 | def test_strict(): |
| 614 | fory = Fory(xlang=False, ref=True, compatible=False) |
| 615 | obj = ChildClass1(f1="a", f2=-10, f3={"a": -10.0, "b": 1 / 3}) |
| 616 | with pytest.raises(TypeUnregisteredError): |
| 617 | fory.serialize(obj) |
| 618 | |
| 619 | |
| 620 | def test_inheritance(): |
nothing calls this directly
no test coverage detected