Home
last modified time | relevance | path

Searched refs:TEST_VALUE (Results 1 – 9 of 9) sorted by relevance

/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DMapConstraintsTest.java54 private static final Integer TEST_VALUE = 42; field in MapConstraintsTest
74 if (TEST_VALUE.equals(value)) { in checkKeyValue()
103 map.put(TEST_KEY, TEST_VALUE); in testConstrainedMapLegal()
117 Maps.immutableEntry(TEST_KEY, TEST_VALUE), in testConstrainedMapLegal()
128 constrained.put(TEST_KEY, TEST_VALUE); in testConstrainedMapIllegal()
132 constrained.put("baz", TEST_VALUE); in testConstrainedMapIllegal()
153 map.put(TEST_KEY, TEST_VALUE); in testConstrainedBiMapLegal()
165 Maps.immutableEntry(TEST_KEY, TEST_VALUE), in testConstrainedBiMapLegal()
178 constrained.put(TEST_KEY, TEST_VALUE); in testConstrainedBiMapIllegal()
182 constrained.put("baz", TEST_VALUE); in testConstrainedBiMapIllegal()
[all …]
DConstrainedBiMapTest.java40 private static final String TEST_VALUE = "test"; field in ConstrainedBiMapTest
48 map.put(TEST_KEY, TEST_VALUE); in testPutWithForbiddenKeyForbiddenValue()
72 map.put("allowed", TEST_VALUE); in testPutWithAllowedKeyForbiddenValue()
99 if (TEST_VALUE.equals(value)) { in checkKeyValue()
DConstrainedMapTest.java40 private static final String TEST_VALUE = "test"; field in ConstrainedMapTest
48 map.put(TEST_KEY, TEST_VALUE); in testPutWithForbiddenKeyForbiddenValue()
72 map.put("allowed", TEST_VALUE); in testPutWithAllowedKeyForbiddenValue()
98 if (TEST_VALUE.equals(value)) { in checkKeyValue()
/external/guava/guava-tests/test/com/google/common/collect/
DMapConstraintsTest.java56 private static final Integer TEST_VALUE = 42; field in MapConstraintsTest
76 if (TEST_VALUE.equals(value)) { in checkKeyValue()
105 map.put(TEST_KEY, TEST_VALUE); in testConstrainedMapLegal()
119 Maps.immutableEntry(TEST_KEY, TEST_VALUE), in testConstrainedMapLegal()
130 constrained.put(TEST_KEY, TEST_VALUE); in testConstrainedMapIllegal()
134 constrained.put("baz", TEST_VALUE); in testConstrainedMapIllegal()
155 map.put(TEST_KEY, TEST_VALUE); in testConstrainedBiMapLegal()
167 Maps.immutableEntry(TEST_KEY, TEST_VALUE), in testConstrainedBiMapLegal()
180 constrained.put(TEST_KEY, TEST_VALUE); in testConstrainedBiMapIllegal()
184 constrained.put("baz", TEST_VALUE); in testConstrainedBiMapIllegal()
[all …]
DConstrainedMapTest.java47 private static final String TEST_VALUE = "test"; field in ConstrainedMapTest
73 map.put(TEST_KEY, TEST_VALUE); in testPutWithForbiddenKeyForbiddenValue()
97 map.put("allowed", TEST_VALUE); in testPutWithAllowedKeyForbiddenValue()
123 if (TEST_VALUE.equals(value)) { in checkKeyValue()
DConstrainedBiMapTest.java47 private static final String TEST_VALUE = "test"; field in ConstrainedBiMapTest
74 map.put(TEST_KEY, TEST_VALUE); in testPutWithForbiddenKeyForbiddenValue()
98 map.put("allowed", TEST_VALUE); in testPutWithAllowedKeyForbiddenValue()
125 if (TEST_VALUE.equals(value)) { in checkKeyValue()
/external/protobuf/objectivec/Tests/
DGPBDictionaryTests.pddm84 //%DECLARE_VALUE_STORAGE##VHELPER(VALUE_TYPE, VNAME)TEST_VALUE##VHELPER(dict, VNAME, KEY1, VAL1)
102 //%DECLARE_VALUE_STORAGE##VHELPER(VALUE_TYPE, VNAME)TEST_VALUE##VHELPER(dict, VNAME, KEY1, VAL1)
103 //%TEST_VALUE##VHELPER(dict, VNAME, KEY2, VAL2)
104 //%TEST_VALUE##VHELPER(dict, VNAME, KEY3, VAL3)
253 //%DECLARE_VALUE_STORAGE##VHELPER(VALUE_TYPE, VNAME)TEST_VALUE##VHELPER(dict, VNAME, KEY1, VAL1)
254 //%TEST_VALUE##VHELPER(dict, VNAME, KEY2, VAL2)
255 //%TEST_VALUE##VHELPER(dict, VNAME, KEY3, VAL3)
256 //%TEST_VALUE##VHELPER(dict, VNAME, KEY4, VAL4)
272 //%DECLARE_VALUE_STORAGE##VHELPER(VALUE_TYPE, VNAME)TEST_VALUE##VHELPER(dict, VNAME, KEY1, VAL1)
274 //%TEST_VALUE##VHELPER(dict, VNAME, KEY3, VAL3)
[all …]
/external/guava/guava-tests/benchmark/com/google/common/cache/
DMapMakerComparisonBenchmark.java34 private static final String TEST_VALUE = "test value"; field in MapMakerComparisonBenchmark
52 map.put(TEST_KEY, TEST_VALUE); in setUp()
53 cache.put(TEST_KEY, TEST_VALUE); in setUp()
54 cacheNoStats.put(TEST_KEY, TEST_VALUE); in setUp()
/external/guice/core/test/com/google/inject/
DImplicitBindingTest.java248 assertEquals(TestStringProvider.TEST_VALUE, in testInstancesRequestingProvidersForThemselvesWithChildInjectors()
256 assertEquals(TestStringProvider.TEST_VALUE, in testInstancesRequestingProvidersForThemselvesWithChildInjectors()
262 static final String TEST_VALUE = "This is to verify it all works"; field in ImplicitBindingTest.TestStringProvider
265 return TEST_VALUE; in get()