Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / ProductLogicTest.java
1 package org.openecomp.sdc.asdctool.impl;
2
3 import org.junit.Test;
4
5 public class ProductLogicTest {
6
7         private ProductLogic createTestSubject() {
8                 return new ProductLogic();
9         }
10
11         @Test(expected=NullPointerException.class)
12         public void testDeleteAllProducts() throws Exception {
13                 ProductLogic testSubject;
14                 String titanFile = "";
15                 String beHost = "";
16                 String bePort = "";
17                 String adminUser = "";
18                 boolean result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.deleteAllProducts(titanFile, beHost, bePort, adminUser);
23         }
24 }