public static class MapGenerators.ImmutableMapEntryListGenerator extends Object implements TestListGenerator<Map.Entry<String,Integer>>
| Constructor and Description |
|---|
ImmutableMapEntryListGenerator() |
| Modifier and Type | Method and Description |
|---|---|
List<Map.Entry<String,Integer>> |
create(Object... elements)
Creates a new container containing the given elements.
|
Map.Entry<String,Integer>[] |
createArray(int length)
Helper method to create an array of the appropriate type used by this generator.
|
Iterable<Map.Entry<String,Integer>> |
order(List<Map.Entry<String,Integer>> insertionOrder)
Returns the iteration ordering of elements, given the order in which they were added to the
container.
|
SampleElements<Map.Entry<String,Integer>> |
samples()
Returns the sample elements that this generate populates its container with.
|
public ImmutableMapEntryListGenerator()
public SampleElements<Map.Entry<String,Integer>> samples()
TestContainerGeneratorsamples in interface TestContainerGenerator<Collection<Map.Entry<String,Integer>>,Map.Entry<String,Integer>>public Map.Entry<String,Integer>[] createArray(int length)
TestContainerGeneratorcreateArray in interface TestContainerGenerator<Collection<Map.Entry<String,Integer>>,Map.Entry<String,Integer>>public Iterable<Map.Entry<String,Integer>> order(List<Map.Entry<String,Integer>> 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.
order in interface TestContainerGenerator<Collection<Map.Entry<String,Integer>>,Map.Entry<String,Integer>>public List<Map.Entry<String,Integer>> create(Object... elements)
TestContainerGeneratorcreate in interface TestContainerGenerator<Collection<Map.Entry<String,Integer>>,Map.Entry<String,Integer>>create in interface TestListGenerator<Map.Entry<String,Integer>>Copyright © 2010–2019. All rights reserved.