extend vnf properties model for cds actors
[policy/models.git] / models-interactions / model-simulators / src / test / java / org / onap / policy / simulators / DmaapSimulatorTest.java
index 50e9bad..fab041f 100644 (file)
@@ -1,6 +1,6 @@
 /*-
  * ============LICENSE_START=======================================================
- * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2019, 2022 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -38,7 +38,7 @@ import org.onap.policy.common.endpoints.parameters.TopicParameterGroup;
 import org.onap.policy.common.utils.coder.StandardCoder;
 
 public class DmaapSimulatorTest {
-    private static final int MAX_WAIT_SEC = 2;
+    private static final int MAX_WAIT_SEC = 5;
     private static final String TOPIC = "MY-TOPIC";
 
     /**
@@ -86,9 +86,9 @@ public class DmaapSimulatorTest {
 
         DmaapTopicSink sink = TopicEndpointManager.getManager().getDmaapTopicSink(TOPIC);
         sink.send("hello");
-        sink.send("world");
-
         assertEquals("hello", queue.poll(MAX_WAIT_SEC, TimeUnit.SECONDS));
+
+        sink.send("world");
         assertEquals("world", queue.poll(MAX_WAIT_SEC, TimeUnit.SECONDS));
     }
 }