ArrayEachEntryMatches
Matches an array where each element matches the provided matcher.
- Typescript
- Java
import { matchers } from '@contract-case/case-definition-dsl'
new matchers.arrays.ArrayEachEntryMatches(matcher: any)
Parameters
Name | Type | Description |
---|---|---|
matcher | any | The matcher for each entry in the array. |
import io.contract_testing.contractcase.definitions.matchers.arrays.ArrayEachEntryMatches;
new ArrayEachEntryMatches(java.lang.Object matcher);
Parameters
Name | Type | Description |
---|---|---|
matcher | java.lang.Object | The matcher for each entry in the array. |