diff options
Diffstat (limited to 'asl/handle_pool/index_pool_tests.cpp')
-rw-r--r-- | asl/handle_pool/index_pool_tests.cpp | 10 |
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) { |