FirebirdExecuteTests.cs 281 B

12345678910111213
  1. using Xunit;
  2. namespace PetaPoco.Tests.Integration.Databases.Firebird
  3. {
  4. [Collection("Firebird")]
  5. public class FirebirdExecuteTests : BaseExecuteTests
  6. {
  7. public FirebirdExecuteTests()
  8. : base(new FirebirdDBTestProvider())
  9. {
  10. }
  11. }
  12. }