Home
last modified time | relevance | path

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

/external/protobuf/javanano/src/device/test/java/com/google/protobuf/nano/
DNanoAndroidTest.java46 message.nestedMsg = new NestedMessage(); in testParceling()
47 message.nestedMsg.bb = 12345; in testParceling()
63 assertEquals(12345, message.nestedMsg.bb); in testParceling()
/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java72 assertEquals(null, msg.nestedMsg); in testSimpleMessageNano()
78 SimpleMessageNano.NestedMessage nestedMsg = new SimpleMessageNano.NestedMessage(); in testSimpleMessageNano() local
79 nestedMsg.bb = 2; in testSimpleMessageNano()
80 assertEquals(2, nestedMsg.bb); in testSimpleMessageNano()
81 msg.nestedMsg = nestedMsg; in testSimpleMessageNano()
82 assertEquals(2, msg.nestedMsg.bb); in testSimpleMessageNano()
95 assertEquals(2, msg.nestedMsg.bb); in testSimpleMessageNano()
98 msg.nestedMsg = null; in testSimpleMessageNano()
117 RecursiveMessageNano.NestedMessage nestedMsg = new RecursiveMessageNano.NestedMessage(); in testRecursiveMessageNano() local
118 nestedMsg.a = msg1; in testRecursiveMessageNano()
[all …]