BootstrapAdmin/UnitTest/Bootstrap.Admin/Controllers/SQLite/HomeTest.cs

11 lines
228 B
C#
Raw Normal View History

using Xunit;
namespace Bootstrap.Admin.Controllers.SQLite
{
[Collection("SQLiteContext")]
public class HomeTest : SqlServer.HomeTest
{
public HomeTest(SQLiteBAWebHost factory) : base(factory) { }
}
}