summaryrefslogtreecommitdiff
path: root/test/test_main.adb
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2019-01-08 00:00:09 +1100
committerJed Barber <jjbarber@y7mail.com>2019-01-08 00:00:09 +1100
commit6f767eb4b27c4e15ca6c3be3b93ca187caf95bd9 (patch)
tree985ad6bb1ce2215e71fbac1281f99432eebf6c09 /test/test_main.adb
parent809ccef242df42ab43ca0b05e48bf841f840be4b (diff)
Basic test framework and initial tests for Packrat.Util predicates
Diffstat (limited to 'test/test_main.adb')
-rw-r--r--test/test_main.adb21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/test_main.adb b/test/test_main.adb
new file mode 100644
index 0000000..417ae7d
--- /dev/null
+++ b/test/test_main.adb
@@ -0,0 +1,21 @@
+
+
+with
+
+ Ada.Text_IO,
+ Ratnest.Tests;
+
+use
+
+ Ada.Text_IO,
+ Ratnest,
+ Ratnest.Tests;
+
+
+procedure Test_Main is
+begin
+ Put_Line ("Running tests for Packrat.Util...");
+ Run_Tests (Util_Predicate_Tests);
+end Test_Main;
+
+