summaryrefslogtreecommitdiff
path: root/test/ratnest-tests.ads
diff options
context:
space:
mode:
Diffstat (limited to 'test/ratnest-tests.ads')
-rw-r--r--test/ratnest-tests.ads14
1 files changed, 10 insertions, 4 deletions
diff --git a/test/ratnest-tests.ads b/test/ratnest-tests.ads
index c0be0a9..fdcbe71 100644
--- a/test/ratnest-tests.ads
+++ b/test/ratnest-tests.ads
@@ -3,6 +3,16 @@
package Ratnest.Tests is
+ function In_Set_Check return Test_Result;
+ function Not_In_Set_Check return Test_Result;
+
+ Set_Predicate_Tests : Test_Array :=
+ ((+"In_Set", In_Set_Check'Access),
+ (+"Not_In_Set", Not_In_Set_Check'Access));
+
+
+
+
function Is_Digit_Check return Test_Result;
function Is_Hex_Check return Test_Result;
function Is_Letter_Check return Test_Result;
@@ -16,7 +26,6 @@ package Ratnest.Tests is
function Is_Whitespace_Check return Test_Result;
function Not_Whitespace_Check return Test_Result;
-
Util_Predicate_Tests : Test_Array :=
((+"Is_Digit", Is_Digit_Check'Access),
(+"Is_Hex", Is_Hex_Check'Access),
@@ -32,9 +41,6 @@ package Ratnest.Tests is
(+"Not_Whitespace", Not_Whitespace_Check'Access));
-private
-
-
end Ratnest.Tests;