You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 9, 2022. It is now read-only.
assertThat("Wrong result list size", result.size(), is(4));
62
-
assertThat("Unexpected first item", result.get(0), is("com.microsoft.samples.subpackage.CustomException"));
63
-
assertThat("Unexpected second item", result.get(1), is("com.microsoft.samples.subpackage.Display"));
64
-
assertThat("Unexpected third item", result.get(2), is("com.microsoft.samples.subpackage.Person"));
70
+
// Verify filtered and sorted result
71
+
assertThat("Wrong result list size", extractedElements.size(), is(4));
72
+
assertThat("Unexpected first item in the result list after invoke method extractSortedElements()", extractedElements.get(0), is("com.microsoft.samples.subpackage.CustomException"));
73
+
assertThat("Unexpected second item in the result list after invoke method extractSortedElements()", extractedElements.get(1), is("com.microsoft.samples.subpackage.Display"));
74
+
assertThat("Unexpected third item in the result list after invoke method extractSortedElements()", extractedElements.get(2), is("com.microsoft.samples.subpackage.Person"));
0 commit comments