1234567891011121314151617 |
- using System;
- using Npgsql;
- using Xunit;
- namespace PetaPoco.Tests.Integration.Databases.Postgres
- {
- [Collection("Postgres")]
- public class PostgresStoredProcTests : BaseStoredProcTests
- {
- protected override Type DataParameterType => typeof(NpgsqlParameter);
- public PostgresStoredProcTests()
- : base(new PostgresDBTestProvider())
- {
- }
- }
- }
|