Switch from ArrayList to List in Graph.

This commit is contained in:
Holt59
2018-02-24 21:12:07 +01:00
parent 374e5e5f5c
commit bc67e95f7f
2 changed files with 24 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
package org.insa.graph;
import java.io.IOException;
import java.util.Arrays;
import org.junit.jupiter.api.BeforeAll;
public class PathTest {
// Small graph use for tests
private Graph graph;
@BeforeAll
static void initAll() throws IOException {
Node[] nodes = new Node[] {};
graph = new Graph(0, Arrays.asList(nodes));
}
}