Index: third_party/protobuf/java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java |
diff --git a/third_party/protobuf/java/src/test/java/com/google/protobuf/BooleanArrayListTest.java b/third_party/protobuf/java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java |
similarity index 95% |
rename from third_party/protobuf/java/src/test/java/com/google/protobuf/BooleanArrayListTest.java |
rename to third_party/protobuf/java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java |
index b8ad1fe4c0eccc92985994252675f32e55c39a80..24b96c602bf1bd0c09941ec92e72d246b67e2bd7 100644 |
--- a/third_party/protobuf/java/src/test/java/com/google/protobuf/BooleanArrayListTest.java |
+++ b/third_party/protobuf/java/core/src/test/java/com/google/protobuf/BooleanArrayListTest.java |
@@ -73,20 +73,6 @@ public class BooleanArrayListTest extends TestCase { |
assertImmutable(list); |
} |
- public void testCopyConstructor() { |
- BooleanArrayList copy = new BooleanArrayList(TERTIARY_LIST); |
- assertEquals(TERTIARY_LIST, copy); |
- |
- copy = new BooleanArrayList(BooleanArrayList.emptyList()); |
- assertEquals(BooleanArrayList.emptyList(), copy); |
- |
- copy = new BooleanArrayList(asList(false, false, true)); |
- assertEquals(asList(false, false, true), copy); |
- |
- copy = new BooleanArrayList(Collections.<Boolean>emptyList()); |
- assertEquals(BooleanArrayList.emptyList(), copy); |
- } |
- |
public void testModificationWithIteration() { |
list.addAll(asList(true, false, false, true)); |
Iterator<Boolean> iterator = list.iterator(); |