I have a list of object responses and want to test that each block of object matches.Hence using tuple.
softAssertions.assertThat(resultArrayList)
.extracting("title", "countryCode")
.as("Title, CountryCode")
.containsAnyOf(
new Tuple(placeToSearch, expectedCountry));
So my query above, I need to check multiple values for field Title like anyOf(placeToSearch, placeToSearch1). Please suggest