diff options
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({}); +} |