15 lines
225 B
C#
15 lines
225 B
C#
using System.Data.Common;
|
|
|
|
namespace Hutopy.Application.FunctionalTests;
|
|
|
|
public interface ITestDatabase
|
|
{
|
|
Task InitialiseAsync();
|
|
|
|
DbConnection GetConnection();
|
|
|
|
Task ResetAsync();
|
|
|
|
Task DisposeAsync();
|
|
}
|