Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/base/
DToStringHelperTest.java38 String toTest = Objects.toStringHelper(this).toString(); in testConstructor_instance() local
39 assertEquals("ToStringHelperTest{}", toTest); in testConstructor_instance()
43 String toTest = Objects.toStringHelper(this).toString(); in testConstructorLenient_instance() local
44 assertTrue(toTest, toTest.matches(".*\\{\\}")); in testConstructorLenient_instance()
49 String toTest = Objects.toStringHelper(new TestClass()).toString(); in testConstructor_innerClass() local
50 assertEquals("TestClass{}", toTest); in testConstructor_innerClass()
54 String toTest = Objects.toStringHelper(new TestClass()).toString(); in testConstructorLenient_innerClass() local
55 assertTrue(toTest, toTest.matches(".*\\{\\}")); in testConstructorLenient_innerClass()
60 String toTest = Objects.toStringHelper(new Object() {}).toString(); in testConstructor_anonymousClass() local
61 assertEquals("{}", toTest); in testConstructor_anonymousClass()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorDisorderedMarksTest.java202 UnicodeSet toTest = disorderedMarks; in TestSourceTargetSet2() local
209 for (String s : toTest) { in TestSourceTargetSet2()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorDisorderedMarksTest.java199 UnicodeSet toTest = disorderedMarks; in TestSourceTargetSet2() local
206 for (String s : toTest) { in TestSourceTargetSet2()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestCoverage.java90 Set<String> toTest = new HashSet( in TestLocales() local
101 if (DEBUG && (!toTest.contains(locale) || level != Level.MODERN)) { in TestLocales()
DTestPathHeader.java149 Set<String> toTest; in TestCompleteness() local
152 toTest = StandardCodes.make().getLocaleCoverageLocales(Organization.cldr); in TestCompleteness()
155 toTest = factory.getAvailable(); in TestCompleteness()
158 toTest = ImmutableSet.<String> builder().add("en").addAll(toTest).build(); in TestCompleteness()
161 for (String locale : toTest) { in TestCompleteness()
DTestSupplementalInfo.java673 Set<String> toTest = new TreeSet<String>(testInfo.getCldrFactory() in TestEquivalentLocales() local
675 toTest.addAll(SUPPLEMENTAL.getLikelySubtags().keySet()); in TestEquivalentLocales()
676 toTest.addAll(SUPPLEMENTAL.getLikelySubtags().values()); in TestEquivalentLocales()
677 toTest.addAll(SUPPLEMENTAL.getDefaultContentLocales()); in TestEquivalentLocales()
679 main: for (String locale : toTest) { in TestEquivalentLocales()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DULocaleTest.java1701 String toTest [][] = { in TestOrientation() local
1711 for (int i = 0; i < toTest.length; ++i) { in TestOrientation()
1712 ULocale loc = new ULocale(toTest[i][0]); in TestOrientation()
1715 if (!co.equals(toTest[i][1])) { in TestOrientation()
1716 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][1] + "\" character orientation,… in TestOrientation()
1718 else if (!lo.equals(toTest[i][2])) { in TestOrientation()
1719 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][2] + "\" line orientation, but … in TestOrientation()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DULocaleTest.java1698 String toTest [][] = { in TestOrientation() local
1708 for (int i = 0; i < toTest.length; ++i) { in TestOrientation()
1709 ULocale loc = new ULocale(toTest[i][0]); in TestOrientation()
1712 if (!co.equals(toTest[i][1])) { in TestOrientation()
1713 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][1] + "\" character orientation,… in TestOrientation()
1715 else if (!lo.equals(toTest[i][2])) { in TestOrientation()
1716 …errln("Locale \"" + toTest[i][0] + "\" should have \"" + toTest[i][2] + "\" line orientation, but … in TestOrientation()
/external/skqp/experimental/canvaskit/tests/
Dcanvas2d.spec.js823 const toTest = ['font', 'lineWidth', 'strokeStyle', 'lineCap',
832 for(let attr of toTest) {
/external/skia/modules/canvaskit/tests/
Dcanvas2d.spec.js805 const toTest = ['font', 'lineWidth', 'strokeStyle', 'lineCap',
814 for(let attr of toTest) {
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c3152 static const OrientationStruct toTest [] = { in TestOrientation() local
3166 for (; i < UPRV_LENGTHOF(toTest); ++i) { in TestOrientation()
3169 const char* const localeId = toTest[i].localeId; in TestOrientation()
3171 const ULayoutType expectedCO = toTest[i].character; in TestOrientation()
3173 const ULayoutType expectedLO = toTest[i].line; in TestOrientation()
/external/icu/icu4c/source/test/intltest/
Dusettest.cpp1740 UnicodeSet &toTest = bitsToSet(i, aa); in TestExhaustive() local
1743 checkRoundTrip(toTest); in TestExhaustive()
1745 checkSerializeRoundTrip(toTest, ec); in TestExhaustive()