MssqlMsDataStoredProcTests.cs 427 B

1234567891011121314151617
  1. using System;
  2. using Microsoft.Data.SqlClient;
  3. using Xunit;
  4. namespace PetaPoco.Tests.Integration.Databases.MSSQLMsData
  5. {
  6. [Collection("MssqlMsData")]
  7. public class MssqlMsDataStoredProcTests : BaseStoredProcTests
  8. {
  9. protected override Type DataParameterType => typeof(SqlParameter);
  10. public MssqlMsDataStoredProcTests()
  11. : base(new MssqlMsDataDBTestProvider())
  12. {
  13. }
  14. }
  15. }