Home
last modified time | relevance | path

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

/external/protobuf/javanano/src/test/java/com/google/protobuf/nano/
DNanoTest.java4437 AnotherMessage anotherMessage = new AnotherMessage(); in testClone() local
4438 anotherMessage.string = "Hello"; in testClone()
4439 anotherMessage.value = true; in testClone()
4440 anotherMessage.integers = new int[] { 1, 2, 3 }; in testClone()
4442 AnotherMessage clone = anotherMessage.clone(); in testClone()
4443 assertEquals(clone, anotherMessage); in testClone()
4448 assertFalse(clone.equals(anotherMessage)); in testClone()