()
| 102 | } |
| 103 | |
| 104 | func (t Test) MarshalJSON() ([]byte, error) { |
| 105 | b, err := t.union.MarshalJSON() |
| 106 | return b, err |
| 107 | } |
| 108 | |
| 109 | func (t *Test) UnmarshalJSON(b []byte) error { |
| 110 | err := t.union.UnmarshalJSON(b) |
no outgoing calls
no test coverage detected