I have a expected List of Strings:
List<String> expected = Arrays.asList("a", "b");
I want these assertions be evaluated with these results:
{"a", "a", "b", "b"} -> true
{"a", "b", "c"} -> false
Essentially, I want assertJ to ignore/remove any duplicates that is being evaluated. How can I do this with the Assertions API?