I need to solve a java problem for an interview, and they have sent me the test class. It starts with
import org.junit.Before;
and also ha
If you are using Java 9 or above you may need to require the junit dependency in your module-info.java
module myModule { requires junit; }