31 lines
902 B
C#
31 lines
902 B
C#
using Elwig.Helpers;
|
|
using Microsoft.Data.Sqlite;
|
|
using System.Reflection;
|
|
|
|
namespace Tests.HelperTests {
|
|
[TestFixture]
|
|
public class BillingTest {
|
|
|
|
private SqliteConnection? Connection;
|
|
|
|
[OneTimeSetUp]
|
|
public async Task SetupDatabase() {
|
|
Connection = await AppDbContext.ConnectAsync();
|
|
await AppDbContext.ExecuteEmbeddedScript(Connection, Assembly.GetExecutingAssembly(), "Tests.Resources.BillingInsert.sql");
|
|
}
|
|
|
|
[OneTimeTearDown]
|
|
public async Task TeardownDatabase() {
|
|
if (Connection == null) return;
|
|
await AppDbContext.ExecuteEmbeddedScript(Connection, Assembly.GetExecutingAssembly(), "Tests.Resources.BillingDelete.sql");
|
|
await Connection.DisposeAsync();
|
|
Connection = null;
|
|
}
|
|
|
|
[Test]
|
|
public void Test() {
|
|
// TODO
|
|
}
|
|
}
|
|
}
|