OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:containsNullValue
(Results
1 - 2
of
2
) sorted by null
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
MapPutAllTester.java
52
private List<Entry<K, V>>
containsNullValue
;
57
containsNullValue
= singletonList(entry(samples.e3.getKey(), null));
158
putAll(
containsNullValue
);
159
expectAdded(
containsNullValue
.get(0));
166
putAll(
containsNullValue
);
167
fail("putAll(
containsNullValue
) should throw");
173
"putAll(
containsNullValue
)");
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapPutAllTester.java
55
private List<Entry<K, V>>
containsNullValue
;
60
containsNullValue
= singletonList(entry(samples.e3.getKey(), null));
161
putAll(
containsNullValue
);
162
expectAdded(
containsNullValue
.get(0));
169
putAll(
containsNullValue
);
170
fail("putAll(
containsNullValue
) should throw");
176
"putAll(
containsNullValue
)");
Completed in 57 milliseconds