aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/impl/GraphMLDataAnalyzerTest.java
blob: c2605a69465f76585859b1812b273e7b55be277e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.openecomp.sdc.asdctool.impl;

import org.junit.Test;

public class GraphMLDataAnalyzerTest {

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

	@Test
	public void testAnalyzeGraphMLData() throws Exception {
		GraphMLDataAnalyzer testSubject;
		String[] args = new String[] { "export", "src/main/resources/config/janusgraph.properties", "./" };
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.analyzeGraphMLData(args);
	}
}