Home
last modified time | relevance | path

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

/external/protobuf/java/core/src/test/java/com/google/protobuf/
DLazyStringArrayListTest.java49 private static String STRING_A = "A"; field in LazyStringArrayListTest
59 list.add(STRING_A); in testJustStrings()
64 assertSame(STRING_A, list.get(0)); in testJustStrings()
72 assertSame(STRING_A, list.get(0)); in testJustStrings()
106 list.add(STRING_A); in testConversionBackAndForth()
111 assertSame(STRING_A, list.get(0)); in testConversionBackAndForth()
140 list1.add(STRING_A); in testCopyConstructorCopiesByReference()
146 assertSame(STRING_A, list2.get(0)); in testCopyConstructorCopiesByReference()
153 list1.add(STRING_A); in testListCopyConstructor()
159 assertSame(STRING_A, list2.get(0)); in testListCopyConstructor()
[all …]
DUnmodifiableLazyStringListTest.java46 private static String STRING_A = "A"; field in UnmodifiableLazyStringListTest
58 assertSame(STRING_A, list.get(0)); in testReadOnlyMethods()
222 rawList.add(STRING_A); in createSampleList()