Added protocol_plugins.stub that implements
[controller.git] / opendaylight / statisticsmanager / implementation / src / test / java / org / opendaylight / controller / statisticsmanager / internal / StatisticsManagerTest.java
@@ -1,28 +1,27 @@
-\r
-/*\r
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.controller.statisticsmanager;\r
-\r
-import org.junit.Test;\r
-\r
-public class StatisticsManagerTest {\r
-\r
-       @Test\r
-       public void test() {\r
-               StatisticsManager sm = new StatisticsManager();\r
-               \r
-               sm.init();\r
-               sm.start();\r
-               sm.stop();\r
-               sm.destroy();\r
-               \r
-               \r
-       }\r
-\r
-}\r
+/*
+ * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.controller.statisticsmanager.internal;
+
+import org.junit.Test;
+import org.opendaylight.controller.statisticsmanager.internal.StatisticsManager;
+
+public class StatisticsManagerTest {
+
+    @Test
+    public void test() {
+        StatisticsManager sm = new StatisticsManager();
+
+        sm.init();
+        sm.start();
+        sm.stop();
+        sm.destroy();
+
+    }
+
+}