Remove usage of DOMNotificationRouter.create meth
[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.Test;
11 import org.slf4j.Logger;
12 import org.slf4j.LoggerFactory;
13
14 public class TransportPCETest {
15
16     private static final Logger LOG = LoggerFactory.getLogger(TransportPCETest.class);
17
18     @Test
19     public void test() {
20         LOG.info("test");
21     }
22
23 }