File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
1538def test_data_analyst_plot_dfs ():
1639 da = DataAnalyst ()
You can’t perform that action at this time.
0 commit comments