summaryrefslogtreecommitdiff
path: root/test/graph_tests-curses.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2020-05-21 21:24:25 +1000
committerJed Barber <jjbarber@y7mail.com>2020-05-21 21:24:25 +1000
commit82a42674ba64c6386152a5910fd7345a92b135e8 (patch)
treebe453540ca12e0679f9ea741f99c592696ce3b96 /test/graph_tests-curses.ads
parentd07979218ea80c58e64148d9638ed3e6195ff6ed (diff)
Tests complete, minor bugs fixed
Diffstat (limited to 'test/graph_tests-curses.ads')
-rw-r--r--test/graph_tests-curses.ads29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/graph_tests-curses.ads b/test/graph_tests-curses.ads
new file mode 100644
index 0000000..dff209b
--- /dev/null
+++ b/test/graph_tests-curses.ads
@@ -0,0 +1,29 @@
+
+
+with Unit_Tests;
+use Unit_Tests;
+
+
+package Graph_Tests.Curses is
+
+
+ function First_Check return Test_Result;
+ function Last_Check return Test_Result;
+ function Next_Check return Test_Result;
+ function Previous_Check return Test_Result;
+ function Follow_Check return Test_Result;
+ function Cursor_To_Check return Test_Result;
+
+
+ Tests : Test_Array :=
+ ((+"First", First_Check'Access),
+ (+"Last", Last_Check'Access),
+ (+"Next", Next_Check'Access),
+ (+"Previous", Previous_Check'Access),
+ (+"Follow", Follow_Check'Access),
+ (+"Cursor_To", Cursor_To_Check'Access));
+
+
+end Graph_Tests.Curses;
+
+