3 references to CreatePool
Shared.Tests (3)
Pools\PoolTests.cs (3)
60
var pool = PoolFactory.
CreatePool
<Foo>(Capacity);
223
Assert.Throws<ArgumentOutOfRangeException>(() => PoolFactory.
CreatePool
<Foo>(0));
241
var pool = PoolFactory.
CreatePool
<Foo>(maxCapacity: Capacity);