aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_bitvec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_bitvec.cpp')
-rw-r--r--test/test_bitvec.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/test_bitvec.cpp b/test/test_bitvec.cpp
index 0b6e534..b891aca 100644
--- a/test/test_bitvec.cpp
+++ b/test/test_bitvec.cpp
@@ -21,6 +21,7 @@
#include "chilbert/BigBitVec.hpp"
#include "chilbert/FixBitVec.hpp"
+#include "chilbert/StaticBitVec.hpp"
#include <cassert>
#include <cstddef>
@@ -348,5 +349,15 @@ main()
test<chilbert::CBigBitVec, 65>(ctx);
test<chilbert::CBigBitVec, 997>(ctx);
+ test<chilbert::StaticBitVec<0>, 0>(ctx);
+ test<chilbert::StaticBitVec<1>, 1>(ctx);
+ test<chilbert::StaticBitVec<31>, 31>(ctx);
+ test<chilbert::StaticBitVec<32>, 32>(ctx);
+ test<chilbert::StaticBitVec<33>, 33>(ctx);
+ test<chilbert::StaticBitVec<63>, 63>(ctx);
+ test<chilbert::StaticBitVec<64>, 64>(ctx);
+ test<chilbert::StaticBitVec<65>, 65>(ctx);
+ test<chilbert::StaticBitVec<997>, 997>(ctx);
+
return 0;
}