759c11209cfc1e3f5de56738816ca7fbe3be95f9
[netconf.git] / netconf / netconf-topology-singleton / src / test / java / org / opendaylight / netconf / topology / singleton / impl / actors / WriteTransactionActorTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netconf.topology.singleton.impl.actors;
10
11 import akka.actor.ActorSystem;
12 import akka.testkit.TestActorRef;
13 import akka.testkit.javadsl.TestKit;
14 import java.util.concurrent.TimeUnit;
15 import org.junit.AfterClass;
16 import org.junit.Before;
17 import org.mockito.Mock;
18 import org.mockito.MockitoAnnotations;
19 import org.opendaylight.controller.md.sal.dom.api.DOMDataWriteTransaction;
20 import scala.concurrent.duration.Duration;
21
22 public class WriteTransactionActorTest extends WriteTransactionActorTestAdapter {
23     private static ActorSystem system = ActorSystem.apply();
24
25     @Mock
26     private DOMDataWriteTransaction mockWriteTx;
27
28     @Before
29     public void setUp() {
30         MockitoAnnotations.initMocks(this);
31         init(mockWriteTx, system, TestActorRef.create(system,
32                 WriteTransactionActor.props(mockWriteTx, Duration.apply(2, TimeUnit.SECONDS))));
33     }
34
35     @AfterClass
36     public static void staticTearDown() {
37         TestKit.shutdownActorSystem(system, Boolean.TRUE);
38     }
39 }