Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4433 AnotherMessage anotherMessage = new AnotherMessage(); in testClone() local
4434 anotherMessage.string = "Hello"; in testClone()
4435 anotherMessage.value = true; in testClone()
4436 anotherMessage.integers = new int[] { 1, 2, 3 }; in testClone()
4438 AnotherMessage clone = anotherMessage.clone(); in testClone()
4439 assertEquals(clone, anotherMessage); in testClone()
4444 assertFalse(clone.equals(anotherMessage)); in testClone()