Move netconf topology applications in apps/
[netconf.git] / apps / 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 package org.opendaylight.netconf.topology.singleton.impl.actors;
9
10 import akka.actor.ActorSystem;
11 import akka.testkit.TestActorRef;
12 import akka.testkit.javadsl.TestKit;
13 import java.time.Duration;
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.DOMDataTreeWriteTransaction;
20
21 @RunWith(MockitoJUnitRunner.StrictStubs.class)
22 public class WriteTransactionActorTest extends WriteTransactionActorTestAdapter {
23     private static ActorSystem system = ActorSystem.apply();
24
25     @Mock
26     private DOMDataTreeWriteTransaction mockWriteTx;
27
28     @Before
29     public void setUp() {
30         init(mockWriteTx, system, TestActorRef.create(system,
31                 WriteTransactionActor.props(mockWriteTx, Duration.ofSeconds(2))));
32     }
33
34     @AfterClass
35     public static void staticTearDown() {
36         TestKit.shutdownActorSystem(system, true);
37     }
38 }