summaryrefslogtreecommitdiff
path: root/asl/handle_pool/index_pool_tests.cpp
diff options
context:
space:
mode:
authorSteven Le Rouzic <steven.lerouzic@gmail.com>2025-06-03 00:13:17 +0200
committerSteven Le Rouzic <steven.lerouzic@gmail.com>2025-06-03 00:13:17 +0200
commitaa21fd7a24c0a14dd98d3e97e033551ed3006eb4 (patch)
tree7462b7ca39023381b03b1bab817805d5f08e42d3 /asl/handle_pool/index_pool_tests.cpp
parent048ab0903b8749717f4461a6abcfa023ceef0dd6 (diff)
WIP
Diffstat (limited to 'asl/handle_pool/index_pool_tests.cpp')
-rw-r--r--asl/handle_pool/index_pool_tests.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/asl/handle_pool/index_pool_tests.cpp b/asl/handle_pool/index_pool_tests.cpp
index 1dd2816..50becfe 100644
--- a/asl/handle_pool/index_pool_tests.cpp
+++ b/asl/handle_pool/index_pool_tests.cpp
@@ -3,6 +3,16 @@
// SPDX-License-Identifier: BSD-3-Clause
#include "asl/testing/testing.hpp"
+#include "asl/handle_pool/index_pool.hpp"
+
+enum TestHandleType : uint8_t
+{
+ kType1,
+ kType2,
+};
+
+using TestHandle = asl::index_pool_handle<10, 14, TestHandleType>;
+using Pool = asl::IndexPool<TestHandle>;
ASL_TEST(test)
{