From 82a42674ba64c6386152a5910fd7345a92b135e8 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Thu, 21 May 2020 21:24:25 +1000 Subject: Tests complete, minor bugs fixed --- test/graph_tests-modify.ads | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 test/graph_tests-modify.ads (limited to 'test/graph_tests-modify.ads') diff --git a/test/graph_tests-modify.ads b/test/graph_tests-modify.ads new file mode 100644 index 0000000..ed896b1 --- /dev/null +++ b/test/graph_tests-modify.ads @@ -0,0 +1,25 @@ + + +with Unit_Tests; +use Unit_Tests; + + +package Graph_Tests.Modify is + + + function Insert_Check return Test_Result; + function Delete_Check return Test_Result; + function Delete_Subgraph_Check return Test_Result; + function Swap_Check return Test_Result; + + + Tests : Test_Array := + ((+"Insert", Insert_Check'Access), + (+"Delete", Delete_Check'Access), + (+"Delete_Subgraph", Delete_Subgraph_Check'Access), + (+"Swap", Swap_Check'Access)); + + +end Graph_Tests.Modify; + + -- cgit