Clarifications
-
It is fine to use a static set to store the results; however, make sure you clear the
set in the findImages method before you do any processing. When you run JUnit tests
and use a set static field, the results from each JUnit test will be appended to the set (all
tests keep using the same set). Clearing the set for each test avoids this problem.
Web Accessibility