(t *testing.T, pet Pet, expect Pet)
| 82 | } |
| 83 | |
| 84 | func CheckPetUnscoped(t *testing.T, pet Pet, expect Pet) { |
| 85 | doCheckPet(t, pet, expect, true) |
| 86 | } |
| 87 | |
| 88 | func CheckPet(t *testing.T, pet Pet, expect Pet) { |
| 89 | doCheckPet(t, pet, expect, false) |
nothing calls this directly
no test coverage detected