Policy TestSuite Enabled
[policy/engine.git] / PolicyEngineAPI / src / test / java / org / openecomp / policy / std / test / ManualClientEndUEBTest.java
index fedcc99..f196975 100644 (file)
 
 package org.openecomp.policy.std.test;
 
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+
 import java.util.LinkedList;
 import java.util.List;
 
-import org.junit.*;
-import org.mockito.Mockito;
-import org.mockito.invocation.InvocationOnMock;
-import org.mockito.stubbing.Answer;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
 import org.openecomp.policy.api.NotificationScheme;
 import org.openecomp.policy.api.PDPNotification;
 import org.openecomp.policy.std.ManualClientEndUEB;
-import org.openecomp.policy.std.NotificationUnMarshal;
 import org.openecomp.policy.std.StdPDPNotification;
 
-import static org.junit.Assert.*;
-
 /**
  * The class <code>ManualClientEndUEBTest</code> contains tests for the class <code>{@link ManualClientEndUEB}</code>.
  *
@@ -59,7 +58,6 @@ public class ManualClientEndUEBTest {
        public void setUp()
                throws Exception {
                String url = "http://test.com";
-               String uniqueID = "test";
                List<String> uebURLList = new LinkedList<String>();
                uebURLList.add(url);
                                
@@ -77,25 +75,6 @@ public class ManualClientEndUEBTest {
                // add additional test code here
        }
 
-       /**
-        * Run the void createTopic(String,String,List<String>) method test.
-        *
-        * @throws Exception
-        *
-        * @generatedBy CodePro at 6/1/16 1:40 PM
-        */
-       @Test
-       public void testCreateTopic_1()
-               throws Exception {
-               String url = "http://test.com";
-               String uniqueID = "test";
-               List<String> uebURLList = new LinkedList<String>();
-               uebURLList.add(url);
-
-               ManualClientEndUEB.createTopic(url, uniqueID, uebURLList);
-
-       }
-
        /**
         * Run the PDPNotification result(NotificationScheme) method test.
         *
@@ -113,30 +92,6 @@ public class ManualClientEndUEBTest {
                assertNull(result);
        }
 
-
-       /**
-        * Run the void start(String,List<String>,String) method test.
-        *
-        * @throws Exception
-        *
-        * @generatedBy CodePro at 6/1/16 1:40 PM
-        */
-       @Test
-       public void testStart_1()
-               throws Exception {
-               String url = "http://test.com";
-               List<String> uebURLList = new LinkedList<String>();
-               String uniqueID = "test";
-               uebURLList.add(url);
-
-               ManualClientEndUEB.start(url, uebURLList, uniqueID);
-
-               // add additional test code here
-               // An unexpected exception was thrown in user code while executing this test:
-               //    java.lang.NoClassDefFoundError: Could not initialize class org.openecomp.policy.std.ManualClientEndUEB
-       }
-
-
        /**
         * Perform post-test clean-up.
         *