()
| 222 | } |
| 223 | |
| 224 | @Test |
| 225 | public void testSkip() throws Exception { |
| 226 | TestUnion tu = TestUnion.string_field("string"); |
| 227 | byte[] tuSerialized = new TSerializer().serialize(tu); |
| 228 | TestUnionMinusStringField tums = new TestUnionMinusStringField(); |
| 229 | new TDeserializer().deserialize(tums, tuSerialized); |
| 230 | assertNull(tums.getSetField()); |
| 231 | assertNull(tums.getFieldValue()); |
| 232 | } |
| 233 | |
| 234 | @Test |
| 235 | public void testDeepCopy() throws Exception { |
nothing calls this directly
no test coverage detected