PostgresQueryTests.cs 275 B

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