Skip to content

Commit

Permalink
Add input test dot file for RWS test.
Browse files Browse the repository at this point in the history
  • Loading branch information
theViz343 committed Dec 1, 2023
1 parent ca4ae72 commit 6140ba9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions src/test/input2.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
digraph {
a -> b;
b -> c;
c -> d;
d -> a;
a -> e;
e -> f;
e -> g;
f -> h;
g -> h;
}
2 changes: 1 addition & 1 deletion src/test/java/GraphDataTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
public class GraphDataTest {
GraphData graphApi = new GraphData();
static final String GRAPH_PATH = "src/test/test_graph.dot";
static final String CANVAS_GRAPH_PATH = "src/main/resources/input2.dot";
static final String CANVAS_GRAPH_PATH = "src/test/input2.dot";
static final String OUTPUT_GRAPH_STRING_PATH = "src/test/output.txt";
static final String OUTPUT_GRAPH_DOT_PATH = "src/test/gen_graph.dot";
static final String EXPECTED_GRAPH_DOT_PATH = "src/test/expected.dot";
Expand Down

0 comments on commit 6140ba9

Please sign in to comment.