PostgresStoredProcTests.cs 397 B

1234567891011121314151617
  1. using System;
  2. using Npgsql;
  3. using Xunit;
  4. namespace PetaPoco.Tests.Integration.Databases.Postgres
  5. {
  6. [Collection("Postgres")]
  7. public class PostgresStoredProcTests : BaseStoredProcTests
  8. {
  9. protected override Type DataParameterType => typeof(NpgsqlParameter);
  10. public PostgresStoredProcTests()
  11. : base(new PostgresDBTestProvider())
  12. {
  13. }
  14. }
  15. }