46 lines
1.0 KiB
C#
46 lines
1.0 KiB
C#
using NUnit.Framework;
|
|
|
|
namespace Mirror.Tests
|
|
{
|
|
public class PoolTests
|
|
{
|
|
Pool<string> pool;
|
|
|
|
[SetUp]
|
|
public void SetUp()
|
|
{
|
|
pool = new Pool<string>(() => "new string", 0);
|
|
}
|
|
|
|
[TearDown]
|
|
public void TearDown()
|
|
{
|
|
pool = null;
|
|
}
|
|
|
|
[Test]
|
|
public void TakeFromEmpty()
|
|
{
|
|
// taking from an empty pool should give us a completely new string
|
|
Assert.That(pool.Take(), Is.EqualTo("new string"));
|
|
}
|
|
|
|
[Test]
|
|
public void ReturnAndTake()
|
|
{
|
|
// returning and then taking should get the returned one, not a
|
|
// newly generated one.
|
|
pool.Return("returned");
|
|
Assert.That(pool.Take(), Is.EqualTo("returned"));
|
|
}
|
|
|
|
[Test]
|
|
public void Count()
|
|
{
|
|
Assert.That(pool.Count, Is.EqualTo(0));
|
|
pool.Return("returned");
|
|
Assert.That(pool.Count, Is.EqualTo(1));
|
|
}
|
|
}
|
|
}
|