X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2FTransactionContextWrapperTest.java;h=af6e782ed7a45063f3f5b955f755d9227a29f6d7;hp=10fee5c6d5258e9440a4a79ede3505897016b161;hb=c796596b5c46b5203c30b143e6282662e66c5642;hpb=93e6f3bfc003d4ce2d968761dff963615a0b799d diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/TransactionContextWrapperTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/TransactionContextWrapperTest.java index 10fee5c6d5..af6e782ed7 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/TransactionContextWrapperTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/TransactionContextWrapperTest.java @@ -15,27 +15,23 @@ import org.junit.Before; import org.junit.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; -import org.opendaylight.controller.cluster.datastore.identifiers.TransactionIdentifier; import org.opendaylight.controller.cluster.datastore.utils.ActorContext; public class TransactionContextWrapperTest { - - @Mock - TransactionIdentifier identifier; - @Mock - ActorContext actorContext; + private ActorContext actorContext; @Mock - TransactionContext transactionContext; + private TransactionContext transactionContext; - TransactionContextWrapper transactionContextWrapper; + private TransactionContextWrapper transactionContextWrapper; @Before public void setUp(){ MockitoAnnotations.initMocks(this); doReturn(DatastoreContext.newBuilder().build()).when(actorContext).getDatastoreContext(); - transactionContextWrapper = new TransactionContextWrapper(identifier, actorContext); + transactionContextWrapper = new TransactionContextWrapper(MockIdentifiers.transactionIdentifier( + TransactionContextWrapperTest.class, "mock"), actorContext); } @Test