summaryrefslogtreecommitdiff
path: root/test/graph_tests-basic.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2020-05-20 01:21:51 +1000
committerJed Barber <jjbarber@y7mail.com>2020-05-20 01:21:51 +1000
commitd07979218ea80c58e64148d9638ed3e6195ff6ed (patch)
treedef34d24f16923e8a05fc652e847240d8eb16865 /test/graph_tests-basic.ads
parent65c9afbdc7daf588aaff505b2c148c4218f231d5 (diff)
Initial unit tests
Diffstat (limited to 'test/graph_tests-basic.ads')
-rw-r--r--test/graph_tests-basic.ads25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/graph_tests-basic.ads b/test/graph_tests-basic.ads
new file mode 100644
index 0000000..80fb05d
--- /dev/null
+++ b/test/graph_tests-basic.ads
@@ -0,0 +1,25 @@
+
+
+with Unit_Tests;
+use Unit_Tests;
+
+
+package Graph_Tests.Basic is
+
+
+ function To_Graph_Check return Test_Result;
+ function Is_Empty_Check return Test_Result;
+ function Clear_Check return Test_Result;
+ function Cursor_Element_Check return Test_Result;
+
+
+ Tests : Test_Array :=
+ ((+"To_Graph", To_Graph_Check'Access),
+ (+"Is_Empty", Is_Empty_Check'Access),
+ (+"Clear", Clear_Check'Access),
+ (+"To_Cursor, Has_Element, Element", Cursor_Element_Check'Access));
+
+
+end Graph_Tests.Basic;
+
+