public static class DerivedGoogleCollectionGenerators.InverseBiMapGenerator<K,V> extends Object implements TestBiMapGenerator<V,K>, DerivedGenerator
| Constructor and Description |
|---|
InverseBiMapGenerator(OneSizeTestContainerGenerator<com.google.common.collect.BiMap<K,V>,Map.Entry<K,V>> oneSizeTestContainerGenerator) |
| Modifier and Type | Method and Description |
|---|---|
com.google.common.collect.BiMap<V,K> |
create(Object... elements)
Creates a new container containing the given elements.
|
Map.Entry<V,K>[] |
createArray(int length)
Helper method to create an array of the appropriate type used by this generator.
|
V[] |
createKeyArray(int length) |
K[] |
createValueArray(int length) |
TestSubjectGenerator<?> |
getInnerGenerator() |
Iterable<Map.Entry<V,K>> |
order(List<Map.Entry<V,K>> insertionOrder)
Returns the iteration ordering of elements, given the order in which they were added to the
container.
|
SampleElements<Map.Entry<V,K>> |
samples()
Returns the sample elements that this generate populates its container with.
|
public InverseBiMapGenerator(OneSizeTestContainerGenerator<com.google.common.collect.BiMap<K,V>,Map.Entry<K,V>> oneSizeTestContainerGenerator)
public SampleElements<Map.Entry<V,K>> samples()
TestContainerGeneratorpublic com.google.common.collect.BiMap<V,K> create(Object... elements)
TestContainerGeneratorpublic Map.Entry<V,K>[] createArray(int length)
TestContainerGeneratorcreateArray in interface TestContainerGenerator<com.google.common.collect.BiMap<V,K>,Map.Entry<V,K>>public Iterable<Map.Entry<V,K>> order(List<Map.Entry<V,K>> insertionOrder)
TestContainerGeneratorIf the order is non-deterministic, as with HashSet, this method can return
its input unmodified. Provided that the test suite is built without CollectionFeature.KNOWN_ORDER, the tests will look
only at the returned contents without regard for order.
public V[] createKeyArray(int length)
createKeyArray in interface TestBiMapGenerator<V,K>public K[] createValueArray(int length)
createValueArray in interface TestBiMapGenerator<V,K>public TestSubjectGenerator<?> getInnerGenerator()
getInnerGenerator in interface DerivedGeneratorCopyright © 2010–2019. All rights reserved.