I have method which returns List of records. Each record have Set as field.
public class R {
public final Set s;
}
I have list of all expected Set - like:
Set<String> set1 = new HashSet<String>(); set1.add("s1.1","s1.2");
Set<String> set2 = new HashSet<String>(); set1.add("s2.1","s2.2");
Set<String> set3 = new HashSet<String>(); set1.add("s3.1","s3.1");
I want to validate in easy way using AssertJ (ver. 3.11.1) that response List<R>
contains all defined Set ot at least aggregation of all elements from these sets are equals to aggrregatin of elements from sets set1, set2, set3
NOTE: solution bellow is not working:
Set allElements = new HashSet<String>();
allElements.addAll(set1);
allElements.addAll(set2);
allElements.addAll(set3);
R result = foo();
org.assertj.core.api.Assertions.assertThat(result)
.extracting(record -> record.s)
.containsOnly(allElements);
I got:
java.lang.AssertionError:
Expecting:
<[["s1.1", "s1.2"],
["s2.1", "s2.2"],
["s3.1", "s3.2"]]>
to contain only:
<[["s1.1",
"s1.2",
"s2.1",
"s2.2",
"s3.1",
"s3.2"]]>
Aucun commentaire:
Enregistrer un commentaire