add a common folder for mutualized functions
[transportpce.git] / common / src / test / java / org / opendaylight / transportpce / common / test / TransportPCETest.java
1 /*
2  * Copyright © 2016 AT&T 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.transportpce.common.test;
9
10 import org.junit.Ignore;
11 import org.junit.Test;
12 import org.slf4j.Logger;
13 import org.slf4j.LoggerFactory;
14
15 public class TransportPCETest {
16
17     private static final Logger LOG = LoggerFactory.getLogger(TransportPCETest.class);
18
19     @Ignore
20     @Test
21     public void test() {
22         LOG.info("test");
23     }
24
25 }