From 6f767eb4b27c4e15ca6c3be3b93ca187caf95bd9 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Tue, 8 Jan 2019 00:00:09 +1100 Subject: Basic test framework and initial tests for Packrat.Util predicates --- test/test_main.adb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/test_main.adb (limited to 'test/test_main.adb') 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; + + -- cgit