aboutsummaryrefslogtreecommitdiffstats
path: root/tests.scm
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2024-09-04 02:16:10 -0400
committerGravatar Peter McGoron 2024-09-04 02:16:10 -0400
commitc510054119dfe97c6e265f4ba8f3dd8c98f0edd8 (patch)
tree8f2f9ff7d11e9bfa35e86106a3252a4cac902dd9 /tests.scm
parentset:refactor maps (diff)
trie: add with test
Diffstat (limited to 'tests.scm')
-rw-r--r--tests.scm7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests.scm b/tests.scm
index a7b4b67..ae93237 100644
--- a/tests.scm
+++ b/tests.scm
@@ -18,6 +18,8 @@
;;;
;;; TODO: Return test results as a list.
+(load "util.scm")
+
(define verbose? #t)
(define run-tests
@@ -67,3 +69,8 @@
(display "running string BST-AVL tests")
(newline)
(report-tests %set:tests)
+
+(load "trie.scm")
+(display "char trie")
+(newline)
+(report-tests %trie:tests)