BGPCEP-710: Create Network Topology Loader
[bgpcep.git] / config-loader / config-loader-impl / src / test / java / org / opendaylight / bgpcep / config / loader / impl / FileWatcherTest.java
@@ -6,7 +6,7 @@
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
 
-package org.opendaylight.protocol.bgp.config.loader.impl;
+package org.opendaylight.bgpcep.config.loader.impl;
 
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
@@ -14,13 +14,13 @@ import static org.junit.Assert.assertNotNull;
 import java.io.File;
 import org.junit.Test;
 
-public class BGPFileWatcherTest {
+public class FileWatcherTest {
     private static final String PATH = "etc" + File.separator + "opendaylight" + File.separator
             + "bgpcep" + File.separator;
 
     @Test
     public void bgpFileWatcherTest() throws Exception {
-        final BGPFileWatcher bgpFileWatcher = new BGPFileWatcher();
+        final FileWatcherImpl bgpFileWatcher = new FileWatcherImpl();
         assertEquals(PATH, bgpFileWatcher.getPathFile());
         assertNotNull(bgpFileWatcher.getWatchService());
         bgpFileWatcher.close();