So I\'m new to JUnit, and we have to use it for a homework assignment. Our professor gave us a project that has one test class, BallTest.java. When I right clic
BallTest.java
It looks like you're missing the runner definition on your test class, that could be the cause:
import org.junit.runners.JUnit4; @RunWith(JUnit4.class) public class BallTest { ... }