Newer
Older
TheCleanArchitecture / tests / Application.IntegrationTests / TestBase.cs
@Derek Comartin Derek Comartin on 15 Jun 2021 289 bytes Reorganized
using NUnit.Framework;
using System.Threading.Tasks;

namespace CleanArchitecture.Application.IntegrationTests
{
    using static Testing;

    public class TestBase
    {
        [SetUp]
        public async Task TestSetUp()
        {
            await ResetState();
        }
    }
}