MariaDbStoredProcTests.cs 407 B

1234567891011121314151617
  1. using System;
  2. using MySql.Data.MySqlClient;
  3. using Xunit;
  4. namespace PetaPoco.Tests.Integration.Databases.MariaDb
  5. {
  6. [Collection("MariaDb")]
  7. public class MariaDbStoredProcTests : BaseStoredProcTests
  8. {
  9. protected override Type DataParameterType => typeof(MySqlParameter);
  10. public MariaDbStoredProcTests()
  11. : base(new MariaDbDBTestProvider())
  12. {
  13. }
  14. }
  15. }