From aa21fd7a24c0a14dd98d3e97e033551ed3006eb4 Mon Sep 17 00:00:00 2001 From: Steven Le Rouzic Date: Tue, 3 Jun 2025 00:13:17 +0200 Subject: WIP --- asl/handle_pool/index_pool_tests.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'asl/handle_pool/index_pool_tests.cpp') 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; ASL_TEST(test) { -- cgit