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