14 lines
215 B
C#
14 lines
215 B
C#
namespace Hutopy.Application.FunctionalTests;
|
|
|
|
using static Testing;
|
|
|
|
[TestFixture]
|
|
public abstract class BaseTestFixture
|
|
{
|
|
[SetUp]
|
|
public async Task TestSetUp()
|
|
{
|
|
await ResetState();
|
|
}
|
|
}
|