`containsAtLeastValues` for column assertions
Open
enhancement
- Dominant language
- Java
- Stars
- 130
- Forks
- 21
- PR merge metrics
- No merged PRs in 30d
Description
Today we can assert that a column has **exactly** some values :
```
assertThat(table).column("name").containsValues("Hewson",
"Evans",
"Clayton",
"Mullen");
```
If the table contains more rows / values, the assertion fails.
But it would be nice to have more flexibility and check if the column contains **at least** the given values.
Contributor guide
Assessment
This issue has not been assessed yet.