Make Actors event-agnostic
[policy/models.git] / models-interactions / model-actors / actor.vfc / src / test / java / org / onap / policy / controlloop / actor / vfc / VfcOperationTest.java
index 425ff91..4f20c12 100644 (file)
@@ -57,11 +57,6 @@ public class VfcOperationTest extends BasicVfcOperation {
         assertTrue(oper.isUsePolling());
     }
 
-    @Test
-    public void testStartPreprocessorAsync() {
-        assertNotNull(oper.startPreprocessorAsync());
-    }
-
     @Test
     public void testResetPollCount() {
         oper.resetPollCount();
@@ -86,5 +81,4 @@ public class VfcOperationTest extends BasicVfcOperation {
     public void testIsSuccess() {
         assertTrue(oper.isSuccess(rawResponse, response));
     }
-
 }