(expected: Monster, actual: unknown)
| 712 | } |
| 713 | |
| 714 | function assertMonsterEqual(expected: Monster, actual: unknown): void { |
| 715 | assertAcyclicEqual("monster", expected, actual); |
| 716 | } |
| 717 | |
| 718 | function assertContainerEqual(expected: Container, actual: unknown): void { |
| 719 | assertAcyclicEqual("complex_fbs container", expected, actual); |
nothing calls this directly
no test coverage detected