SqliteQueryLinqTests.cs 277 B

12345678910111213
  1. using Xunit;
  2. namespace PetaPoco.Tests.Integration.Databases.Sqlite
  3. {
  4. [Collection("Sqlite")]
  5. public class SqliteQueryLinqTests : BaseQueryLinqTests
  6. {
  7. public SqliteQueryLinqTests()
  8. : base(new SqliteDBTestProvider())
  9. {
  10. }
  11. }
  12. }