Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / TitanGraphInitializerTest.java
1 package org.openecomp.sdc.asdctool.impl;
2
3 import org.junit.Test;
4
5 public class TitanGraphInitializerTest {
6
7         @Test(expected=IllegalArgumentException.class)
8         public void testCreateGraph() throws Exception {
9                 String titanCfgFile = "";
10                 boolean result;
11
12                 // default test
13                 result = TitanGraphInitializer.createGraph("");
14                 
15         }
16 }