I have a test class which uses JUnitParams and when I try to run it, I get the error in the title. The JUnitParams library is correctly installed, and I don't have any compiler errors. I am using JUnit 4.13 and JUnitParams 1.1.1 .
I am running the test from a custom run config, which is shown in the picture below. (I am running my project as a JUnit application, with JUnit4 as the test runner.)
the setup for the project's run config
@RunWith(JUnitParamsRunner.class)
public class GraphTest
{
@Test
@Parameters(method = "dijkstraParams")
@TestCaseName("{method}({params}) [{index}]")
public void testDijkstra(int node1, int node2, int expectedDistance)
throws GraphException
{
int[][] input = new int[][] {
{ 0, 1, 4 },
{ 0, 3, 2 },
{ 1, 2, 5 },
{ 1, 3, 1 },
{ 2, 3, 8 },
{ 2, 4, 1 },
{ 2, 5, 6 },
{ 3, 4, 9 },
{ 4, 5, 3 }
};
int[][] inputGraph = addReverseConnections(input);
Graph g = new Graph(input);
int distance = g.dijkstra(node1, node2);
assertThat(distance, is(expectedDistance));
int[][] output = g.getConnections();
assertThat(output, arrayContainingInAnyOrder(inputGraph));
}
}