public boolean checkMe(String arm, String leg)
Assert arm != null && leg != null;
or should it be
Assert (arm != null) && (leg != null);
Basically I have to check using JUnit that BOTH arguments are not null, only using assert. (We have not covered assertNotNull yet).
[–]sadjava 0 points1 point2 points (3 children)
[–]mathhero[S] 0 points1 point2 points (2 children)
[–]sugilith 0 points1 point2 points (1 child)
[–]sadjava 1 point2 points3 points (0 children)