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