FirebirdUpdateTests.cs 275 B

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