package org.infinispan.persistence; import org.testng.annotations.Test; /** * Tests if the conditional commands correctly fetch the value from cache loader even with the skip cache load/store * flags. * <p/> * The configuration used is a tx non-clustered cache with passivation. * * @author Pedro Ruivo * @since 7.0 */ @Test(groups = "functional", testName = "persistence.LocalTxConditionalCommandTest") public class LocalTxConditionalCommandTest extends LocalConditionalCommandTest { public LocalTxConditionalCommandTest() { super(true, false); } }