summaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/impl/ProductLogicTest.java
blob: 09c8b08db6744037b425b9544df598c44f218616 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package org.openecomp.sdc.asdctool.impl;

import static org.junit.Assert.assertFalse;
import org.junit.Test;

public class ProductLogicTest {

	private ProductLogic createTestSubject() {
		return new ProductLogic();
	}

	@Test
	public void testDeleteAllProducts() throws Exception {
		ProductLogic testSubject;
		String janusGraphFile = "";
		String beHost = "";
		String bePort = "";
		String adminUser = "";
		boolean result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.deleteAllProducts(janusGraphFile, beHost, bePort, adminUser);
		assertFalse(result);
	}
}