Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / GraphMLDataAnalyzerTest.java
1 package org.openecomp.sdc.asdctool.impl;
2
3 import org.junit.Test;
4
5 public class GraphMLDataAnalyzerTest {
6
7         private GraphMLDataAnalyzer createTestSubject() {
8                 return new GraphMLDataAnalyzer();
9         }
10
11         @Test
12         public void testAnalyzeGraphMLData() throws Exception {
13                 GraphMLDataAnalyzer testSubject;
14                 String[] args = new String[] { "export", "src/main/resources/config/titan.properties", "./" };
15                 String result;
16
17                 // default test
18                 testSubject = createTestSubject();
19                 result = testSubject.analyzeGraphMLData(args);
20         }
21 }