BootstrapAdmin/UnitTest/Bootstrap.Admin/Api/SQLite/CategoryTest.cs

11 lines
232 B
C#
Raw Normal View History

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