[Minor] Ignoring TxTest.shouldNotAllowCommandsOnDoNothig()

- We have to re-think this. It does not work, throwing an exception if
commands are registered on a read-only TX as then we don't know if we
want to roll back or not - we probably need a ROLLBACK_ON_ERROR or
something, indicating that we are preparing a non-read-only TX.
This commit is contained in:
Robert von Burg 2015-02-08 16:39:23 +01:00
parent 7e0f9c95eb
commit 70ec912446
1 changed files with 3 additions and 1 deletions

View File

@ -12,6 +12,7 @@ import li.strolch.service.api.ServiceArgument;
import li.strolch.service.api.ServiceResult;
import li.strolch.service.test.AbstractRealmServiceTest;
import org.junit.Ignore;
import org.junit.Test;
import ch.eitchnet.utils.dbc.DBC;
@ -37,7 +38,8 @@ public class TxTest extends AbstractRealmServiceTest {
}
@Test
public void shouldNotAllowCommandsOnDoNothibg() {
@Ignore("We have to re-think this. It does not work, throwing an exception if commands are registered on a read-only TX as then we don't know if we want to roll back or not - we probably need a ROLLBACK_ON_ERROR or something")
public void shouldNotAllowCommandsOnDoNothing() {
runServiceInAllRealmTypes(ReadonlyFailService.class, new ServiceArgument());
}