15 lines
454 B
C#
15 lines
454 B
C#
using e_suite.Database.Core.Helpers;
|
|
using e_suite.Database.Core.UnitTests.Helpers.Tables;
|
|
using eSuite.Core.Clock;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace e_suite.Database.Core.UnitTests.Helpers;
|
|
|
|
public class TestDbContext : SunDatabaseEntityContext
|
|
{
|
|
public TestDbContext(DbContextOptions<TestDbContext> options, IClock clock) : base(options, clock)
|
|
{
|
|
}
|
|
|
|
public DbSet<TableWithKey> TableWithKey { get; set; }
|
|
} |