diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-06-17 00:23:38 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2025-06-17 00:24:10 +0200 |
commit | 7d026497c7af244d4999380b749edaeb302e9f0f (patch) | |
tree | 9334576d2700b99ee7280b8434f4f8c1dec19228 /asl/handle_pool/index_pool_tests.cpp | |
parent | 971418ecaa4e464e5093fc79675704fff0d35a31 (diff) |
WIP: Add IndexPool
Diffstat (limited to 'asl/handle_pool/index_pool_tests.cpp')
-rw-r--r-- | asl/handle_pool/index_pool_tests.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/asl/handle_pool/index_pool_tests.cpp b/asl/handle_pool/index_pool_tests.cpp index 3156320..d690878 100644 --- a/asl/handle_pool/index_pool_tests.cpp +++ b/asl/handle_pool/index_pool_tests.cpp @@ -108,3 +108,10 @@ ASL_TEST(compare) // NOLINT ASL_TEST_EXPECT(idx4 != idx5); } + +ASL_TEST(pool) +{ + using Pool = asl::IndexPool<8, 8>; + Pool pool; + auto a = pool.acquire({}); +} |