Home
last modified time | relevance | path

Searched refs:withoutVal3Msg (Results 1 – 1 of 1) sorted by relevance

/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4479 VersionWithoutVal3 withoutVal3Msg = new VersionWithoutVal3(); in testUnknownOptionalEnumValue() local
4480 MessageNano.mergeFrom(withoutVal3Msg, standardMsgBytes); in testUnknownOptionalEnumValue()
4481 assertEquals(VersionWithoutVal3.UNKNOWN, withoutVal3Msg.optionalField); in testUnknownOptionalEnumValue()
4485 withoutVal3Msg.optionalField = VersionWithoutVal3.VAL_2; in testUnknownOptionalEnumValue()
4486 byte[] withoutVal3MsgBytes = MessageNano.toByteArray(withoutVal3Msg); in testUnknownOptionalEnumValue()
4498 VersionWithoutVal3 withoutVal3Msg = new VersionWithoutVal3(); in testUnknownRepeatedEnumValue() local
4499 MessageNano.mergeFrom(withoutVal3Msg, standardMsgBytes); in testUnknownRepeatedEnumValue()
4500 assertTrue(Arrays.equals(new int[] { VersionWithoutVal3.VAL_2 }, withoutVal3Msg.repeatedField)); in testUnknownRepeatedEnumValue()
4504 withoutVal3Msg.repeatedField = new int[] { VersionWithoutVal3.VAL_2, VersionWithoutVal3.VAL_1 }; in testUnknownRepeatedEnumValue()
4505 byte[] withoutVal3MsgBytes = MessageNano.toByteArray(withoutVal3Msg); in testUnknownRepeatedEnumValue()
[all …]