class InAnyOrderValuesAssertionCreator<SC, T> : ContainsObjectsAssertionCreator<T, List<SC>, SC, InAnyOrderSearchBehaviour, IterableLikeContains.Checker>, IterableLikeContains.Creator<T, SC>
Represents a creator of a sophisticated contains
assertions for Iterable where an expected entry can appear
in any order and is identified by expected objects (equality comparison).
T
- The type of the subject of the assertion for which the contains
assertion is be build.
SC
- The type of the elements of the iterable, used as search criteria.
InAnyOrderValuesAssertionCreator(converter: (T) -> Iterable<SC>, searchBehaviour: InAnyOrderSearchBehaviour, checkers: List<IterableLikeContains.Checker>)
Represents a creator of a sophisticated |
val descriptionContains: Translatable
Provides the translation for |
|
val descriptionNumberOfOccurrences: Translatable
Provides the translation for |
|
val groupDescription: Translatable
Provides the translation for AssertionGroup.description |
fun decorateAssertion(container: AssertionContainer<List<SC>>, featureAssertion: Assertion): List<Assertion>
Either return the given featureAssertion as List or add further assertions. |
|
fun getAssertionGroupType(): AssertionGroupType
Provides the AssertionGroupType for the resulting AssertionGroup. |
|
fun makeSubjectMultipleTimesConsumable(container: AssertionContainer<T>): AssertionContainer<List<SC>>
Make the underlying subject multiple times consumable. |
|
fun search(multiConsumableContainer: AssertionContainer<List<SC>>, searchCriterion: SC): Int
Searches for something matching the given searchCriterion in the subject of the given multiConsumableContainer and returns the number of occurrences. |
fun searchAndCreateAssertion(multiConsumableContainer: AssertionContainer<TT>, searchCriterion: SC, featureFactory: (Int, Translatable) -> AssertionGroup): AssertionGroup
Searches for something fulfilling the given searchCriterion in the subject of the assertion associated with the given multiConsumableContainer and should pass on the number of occurrences to the given featureFactory which creates feature assertions based on the checkers, which in turn can be used to create a resulting AssertionGroup representing the assertion for a search criteria as a whole. |