Move netconf topology applications in apps/
[netconf.git] / apps / netconf-topology-singleton / src / test / java / org / opendaylight / netconf / topology / singleton / impl / actors / ReadTransactionActorTest.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 org.junit.AfterClass;
15 import org.junit.Before;
16 import org.junit.runner.RunWith;
17 import org.mockito.Mock;
18 import org.mockito.junit.MockitoJUnitRunner;
19 import org.opendaylight.mdsal.dom.api.DOMDataTreeReadTransaction;
20
21 @RunWith(MockitoJUnitRunner.StrictStubs.class)
22 public class ReadTransactionActorTest extends ReadTransactionActorTestAdapter {
23     private static ActorSystem system = ActorSystem.apply();
24
25     @Mock
26     private DOMDataTreeReadTransaction mockReadTx;
27
28     @Before
29     public void setUp() {
30         init(mockReadTx, system, TestActorRef.create(system, ReadTransactionActor.props(mockReadTx)));
31     }
32
33     @AfterClass
34     public static void staticTearDown() {
35         TestKit.shutdownActorSystem(system, true);
36     }
37 }