Files
OldThink/Content.IntegrationTests/PoolManagerTestEventHandler.cs

16 lines
276 B
C#
Raw Normal View History

using NUnit.Framework;
[assembly: Parallelizable(ParallelScope.Children)]
namespace Content.IntegrationTests;
[SetUpFixture]
public sealed class PoolManagerTestEventHandler
{
[OneTimeTearDown]
public void TearDown()
{
PoolManager.Shutdown();
}
}