Searched refs:expectedCollection (Results 1 – 3 of 3) sorted by relevance
130 Collection<V> expectedCollection = Helpers.copyToList(collection); in testRemovePropagatesToGet() local133 expectedCollection.remove(value); in testRemovePropagatesToGet()135 assertThat(collection).has().exactlyAs(expectedCollection); in testRemovePropagatesToGet()136 assertEquals(!expectedCollection.isEmpty(), multimap().containsKey(key)); in testRemovePropagatesToGet()151 Collection<V> expectedCollection = Helpers.copyToList(collection); in testRemovePropagatesToAsMap() local154 expectedCollection.remove(value); in testRemovePropagatesToAsMap()156 assertThat(collection).has().exactlyAs(expectedCollection); in testRemovePropagatesToAsMap()157 assertEquals(!expectedCollection.isEmpty(), multimap().containsKey(key)); in testRemovePropagatesToAsMap()181 Collection<V> expectedCollection = Helpers.copyToList(collection); in testRemovePropagatesToAsMapEntrySet() local184 expectedCollection.remove(value); in testRemovePropagatesToAsMapEntrySet()[all …]
173 Collection<V> expectedCollection = Helpers.copyToList(collection); in testPutPresentKeyPropagatesToGet() local176 expectedCollection.add(sampleValues().e3); in testPutPresentKeyPropagatesToGet()177 assertThat(collection).has().exactlyAs(expectedCollection); in testPutPresentKeyPropagatesToGet()193 Collection<V> expectedCollection = Helpers.copyToList(collection); in testPutPresentKeyPropagatesToAsMapGet() local196 expectedCollection.add(sampleValues().e3); in testPutPresentKeyPropagatesToAsMapGet()197 assertThat(collection).has().exactlyAs(expectedCollection); in testPutPresentKeyPropagatesToAsMapGet()221 Collection<V> expectedCollection = Helpers.copyToList(collection); in testPutPresentKeyPropagatesToAsMapEntrySet() local224 expectedCollection.add(sampleValues().e3); in testPutPresentKeyPropagatesToAsMapEntrySet()225 assertThat(collection).has().exactlyAs(expectedCollection); in testPutPresentKeyPropagatesToAsMapEntrySet()
49 @Override protected void expectContents(Collection<E> expectedCollection) { in expectContents() argument50 List<E> expectedList = Helpers.copyToList(expectedCollection); in expectContents()