From 5522d56e8da0b2604b6ccc0afce7a7a46f4979d4 Mon Sep 17 00:00:00 2001 From: Roland Praml Date: Wed, 26 Sep 2018 10:48:49 +0200 Subject: [PATCH] ignored tests for sqlserver, because there is no nested transaction support, yet (#1493) --- .../tests/transaction/TestNestedSubTransaction.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/java/org/tests/transaction/TestNestedSubTransaction.java b/src/test/java/org/tests/transaction/TestNestedSubTransaction.java index 05eeed4d8..dc9e3d147 100644 --- a/src/test/java/org/tests/transaction/TestNestedSubTransaction.java +++ b/src/test/java/org/tests/transaction/TestNestedSubTransaction.java @@ -20,7 +20,7 @@ public class TestNestedSubTransaction extends BaseTestCase { /** * MySql only supports named savepoints - review. */ - @IgnorePlatform(Platform.MYSQL) + @IgnorePlatform({Platform.MYSQL, Platform.SQLSERVER}) @Test public void ebeanServer_commitTransaction_expect_sameAsTransactionCommit() { @@ -65,7 +65,7 @@ public class TestNestedSubTransaction extends BaseTestCase { } - @IgnorePlatform(Platform.MYSQL) + @IgnorePlatform({Platform.SQLSERVER, Platform.MYSQL}) @Test public void nestedUseSavepoint_doubleNested_rollbackCommit() { @@ -102,7 +102,7 @@ public class TestNestedSubTransaction extends BaseTestCase { } } - @IgnorePlatform(Platform.MYSQL) + @IgnorePlatform({Platform.SQLSERVER, Platform.MYSQL}) @Test public void nestedUseSavepoint_doubleNested_commitRollback() { @@ -139,7 +139,7 @@ public class TestNestedSubTransaction extends BaseTestCase { } } - @IgnorePlatform(Platform.MYSQL) + @IgnorePlatform({Platform.SQLSERVER, Platform.MYSQL}) @Test public void nestedUseSavepoint_nested_RequiresNew() { @@ -175,7 +175,7 @@ public class TestNestedSubTransaction extends BaseTestCase { assertNull(after); } - @IgnorePlatform(Platform.MYSQL) + @IgnorePlatform({Platform.SQLSERVER, Platform.MYSQL}) @Test public void nestedUseSavepoint() {