BGPCEP-710: Create Network Topology Loader
[bgpcep.git] / config-loader / config-loader-impl / src / test / java / org / opendaylight / bgpcep / config / loader / impl / FileWatcherTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, 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.bgpcep.config.loader.impl;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertNotNull;
13
14 import java.io.File;
15 import org.junit.Test;
16
17 public class FileWatcherTest {
18     private static final String PATH = "etc" + File.separator + "opendaylight" + File.separator
19             + "bgpcep" + File.separator;
20
21     @Test
22     public void bgpFileWatcherTest() throws Exception {
23         final FileWatcherImpl bgpFileWatcher = new FileWatcherImpl();
24         assertEquals(PATH, bgpFileWatcher.getPathFile());
25         assertNotNull(bgpFileWatcher.getWatchService());
26         bgpFileWatcher.close();
27     }
28 }