aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/janusgraph/JanusGraphUtilsTest.java
blob: b3fd59e8b60184aae1b135c7b8204cd28e3d5a5f (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.be.dao.janusgraph;

import org.janusgraph.graphdb.query.JanusGraphPredicate;
import org.apache.tinkerpop.gremlin.structure.T;
import org.junit.Test;

import java.util.Collection;
import java.util.Map;
import java.util.Map.Entry;
public class JanusGraphUtilsTest {

	@Test
	public void testBuildNotInPredicate() throws Exception {
		String propKey = "";
		Collection<T> notInCollection = null;
		Map<String, Entry<JanusGraphPredicate, Object>> result;

		// default test
		result = JanusGraphUtils.buildNotInPredicate(propKey, notInCollection);
	}
}