Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/collect/
DConstraintsTest.java45 private static final String TEST_ELEMENT = "test"; field in ConstraintsTest
56 if (TEST_ELEMENT.equals(element)) {
67 collection.add(TEST_ELEMENT); in testConstrainedCollectionLegal()
72 .exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder(); in testConstrainedCollectionLegal()
74 .exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder(); in testConstrainedCollectionLegal()
82 constrained.add(TEST_ELEMENT); in testConstrainedCollectionIllegal()
86 constrained.addAll(asList("baz", TEST_ELEMENT)); in testConstrainedCollectionIllegal()
96 set.add(TEST_ELEMENT); in testConstrainedSetLegal()
103 assertThat(set).has().exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder(); in testConstrainedSetLegal()
105 .exactly("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog").inOrder(); in testConstrainedSetLegal()
[all …]