16 lines
333 B
C#
16 lines
333 B
C#
using NUnit.Framework;
|
|
|
|
[SetUpFixture]
|
|
// ReSharper disable once CheckNamespace
|
|
public sealed class ContentIntegrationTestSetup
|
|
{
|
|
[OneTimeTearDown]
|
|
public void TearDown()
|
|
{
|
|
var robustSetup = new RobustIntegrationTestSetup();
|
|
|
|
robustSetup.Shutdown();
|
|
robustSetup.PrintTestPoolingInfo();
|
|
}
|
|
}
|