Upgrade SDC from Titan to Janus Graph
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / ProductLogicTest.java
1 package org.openecomp.sdc.asdctool.impl;
2
3 import static org.junit.Assert.assertFalse;
4 import org.junit.Test;
5
6 public class ProductLogicTest {
7
8         private ProductLogic createTestSubject() {
9                 return new ProductLogic();
10         }
11
12         @Test
13         public void testDeleteAllProducts() throws Exception {
14                 ProductLogic testSubject;
15                 String janusGraphFile = "";
16                 String beHost = "";
17                 String bePort = "";
18                 String adminUser = "";
19                 boolean result;
20
21                 // default test
22                 testSubject = createTestSubject();
23                 result = testSubject.deleteAllProducts(janusGraphFile, beHost, bePort, adminUser);
24                 assertFalse(result);
25         }
26 }