1234567891011121314151617 |
- using System;
- using MySql.Data.MySqlClient;
- using Xunit;
- namespace PetaPoco.Tests.Integration.Databases.MySQL
- {
- [Collection("MySql")]
- public class MySqlStoredProcTests : BaseStoredProcTests
- {
- protected override Type DataParameterType => typeof(MySqlParameter);
- public MySqlStoredProcTests()
- : base(new MySqlDBTestProvider())
- {
- }
- }
- }
|