I have the following code:
package osu.cs362.URLValidator; import static org.junit.Assert.*; import org.junit.Test; import java.util.*; import static org.mockito.Mockito.*; public class DomainValidatorTest { RegexValidator rev = mock(RegexValidator.class); } This includes the package osu.cs362.URLValidator which contains RegexValidator.
However, when running mvn test I get:
cannot find symbol class RegexValidator
Why can't it find this class? Is this a pom.xml issue?
