My Junit test should check that the number being returned is the same as the list size
if my test was as follows would this be coded properly, i feel it isnt because i the last 2 lines are always going to be true?
public void testGetTotalPilots() {
ArrayList<Pilot> list = new ArrayList<Pilot>();
int size = list.size();
assert size == list.size();
}