Add unit test for vfc-nfvo-wfengine
[vfc/nfvo/wfengine.git] / wfenginemgrservice / src / test / java / org / onap / workflow / tools / RequestParametersTest.java
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+package org.onap.workflow.tools;
 
-package org.onap.workflow.resources;
-
-import static org.junit.Assert.*;
-
-import org.junit.After;
-import org.junit.AfterClass;
-import org.junit.Before;
-import org.junit.BeforeClass;
 import org.junit.Test;
 
-public class RestClientUtilsTest {
-
-  @BeforeClass
-  public static void setUpBeforeClass() throws Exception {}
-
-  @AfterClass
-  public static void tearDownAfterClass() throws Exception {}
-
-  @Before
-  public void setUp() throws Exception {}
-
-  @After
-  public void tearDown() throws Exception {}
-
+/**
+ *
+ */
+public class RequestParametersTest {
   @Test
-  public void testBuildMultipartRequest() {
-    //fail("Not yet implemented");
+  public void testToString(){
+    RequestParameters result = new RequestParameters();
+    result.toString();
   }
-
 }