Clean up command naming
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / karaf / ShowSessionStatsCommandTest.java
@@ -19,13 +19,13 @@ import org.mockito.InjectMocks;
 import org.opendaylight.openflowplugin.impl.statistics.ofpspecific.SessionStatistics;
 
 /**
- * Test for {@link ShowSessionStatsCommandProvider}.
+ * Test for {@link ShowSessionStatsCommand}.
  */
-class ShowSessionStatsCommandProviderTest extends AbstractKarafTest {
+class ShowSessionStatsCommandTest extends AbstractCommandTest {
     private static final Function<String, Boolean> CHECK_NO_ACTIVITY_FUNCTION = String::isEmpty;
 
     @InjectMocks
-    private ShowSessionStatsCommandProvider showSessionStatsCommand;
+    private ShowSessionStatsCommand showSessionStatsCommand;
 
     @Override
     protected void doBeforeEach() {
@@ -34,7 +34,7 @@ class ShowSessionStatsCommandProviderTest extends AbstractKarafTest {
     }
 
     /**
-     * Test for {@link ShowEventTimesComandProvider#execute()} when no stats were touched before.
+     * Test for {@link ShowEventTimesCommand#execute()} when no stats were touched before.
      */
     @Test
     void showNoActivity() {
@@ -44,7 +44,7 @@ class ShowSessionStatsCommandProviderTest extends AbstractKarafTest {
     }
 
     /**
-     * Test for {@link ShowEventTimesComandProvider#execute()} when stats were touched before.
+     * Test for {@link ShowEventTimesCommand#execute()} when stats were touched before.
      */
     @Test
     void showHavingActivity() {