i am trying to create a unit test using SpringJUnit4ClassRunner but everytime i execute the test it says it cannot find SpringJUnit4ClassRunner using mvn install.
I downloaded your code and got it working locally, as long as I included the relevant import statements:
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.junit.runner.RunWith; import org.junit.Test; ...
Perhaps you're missing an import somewhere.