I have a ListTester.java file in which I've created with some unit tests in there to check the built in List class in Java.
I have also been given a List.class file to have the junit tests check against to make sure they are correct.
However, i'm not sure how to make sure the .class file is utilized by my .java file when it runs the tests.
How would I go about making it work? From what I was told, I can put it in the same directory as my List12Tester.java file and it should use it automatically.