Searched refs:anotherMessage (Results 1 – 1 of 1) sorted by relevance
4437 AnotherMessage anotherMessage = new AnotherMessage(); in testClone() local4438 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()