Skip to content

Commit 6003a55

Browse files
committed
add tests
1 parent 1c839e7 commit 6003a55

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

tests/test_data_analyst.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,29 @@ def test_data_analyst_constructor():
1111
_ = DataAnalyst()
1212
assert True
1313

14+
def test_data_analyst_plot_dfs_one_pddl():
15+
da = DataAnalyst()
16+
da.plot_dfs(domain="pddl-examples/flip/domain.pddl", problem="pddl-examples/flip/problem.pddl")
17+
assert True
18+
19+
20+
def test_data_analyst_plot_bfs_one_pddl():
21+
da = DataAnalyst()
22+
da.plot_bfs(domain="pddl-examples/flip/domain.pddl", problem="pddl-examples/flip/problem.pddl")
23+
assert True
24+
25+
26+
def test_data_analyst_plot_dijkstra_one_pddl():
27+
da = DataAnalyst()
28+
da.plot_dijkstra(domain="pddl-examples/flip/domain.pddl", problem="pddl-examples/flip/problem.pddl")
29+
assert True
30+
31+
32+
def test_data_analyst_plot_astar_h_goal_count_one_pddl():
33+
da = DataAnalyst()
34+
da.plot_astar_data(domain="pddl-examples/flip/domain.pddl", problem="pddl-examples/flip/problem.pddl")
35+
assert True
36+
1437

1538
def test_data_analyst_plot_dfs():
1639
da = DataAnalyst()

0 commit comments

Comments
 (0)