aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/impl/JanusGraphInitializerTest.java
blob: 5be99c382a64491d240712cd1be37190cb803e45 (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 JanusGraphInitializerTest {

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

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