aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/impl/TitanGraphInitializerTest.java
blob: 431c59f591cbafe75c490ca070d0cc59394865e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openecomp.sdc.asdctool.impl;

import org.junit.Test;

public class TitanGraphInitializerTest {

	@Test(expected=IllegalArgumentException.class)
	public void testCreateGraph() throws Exception {
		String titanCfgFile = "";
		boolean result;

		// default test
		result = TitanGraphInitializer.createGraph("");
		
	}
}