GNPy migration to Aluminium
[transportpce.git] / pce / src / test / java / org / opendaylight / transportpce / pce / gnpy / ServiceDataStoreOperationsImplTest.java
1 /*
2  * Copyright © 2020 Orange Labs, Inc. 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.transportpce.pce.gnpy;
10
11 import org.junit.Before;
12 import org.junit.Ignore;
13 import org.junit.Test;
14 import org.mockito.Mockito;
15 import org.opendaylight.transportpce.common.network.NetworkTransactionImpl;
16 import org.opendaylight.transportpce.test.AbstractTest;
17 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.org.openroadm.device.container.OrgOpenroadmDevice;
18
19 @Ignore
20 public class ServiceDataStoreOperationsImplTest extends AbstractTest {
21
22     ServiceDataStoreOperationsImpl serviceDataStoreOperations;
23     NetworkTransactionImpl networkTransaction = Mockito.mock(NetworkTransactionImpl.class);
24     OrgOpenroadmDevice orgOpenroadmDevice = Mockito.mock(OrgOpenroadmDevice.class);
25
26     @Before
27     public void setUp() throws GnpyException {
28         serviceDataStoreOperations = new ServiceDataStoreOperationsImpl(null);
29     }
30
31     @Test
32     public void writeStringFile() throws GnpyException {
33         serviceDataStoreOperations.writeStringFile("filename","data");
34     }
35 }