summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/titan/TitanUtilsTest.java
blob: 5ada93027ae0d1c68f486963c9f650844ace0bb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.sdc.be.dao.titan;

import java.util.Collection;
import java.util.Map;
import java.util.Map.Entry;

import org.apache.tinkerpop.gremlin.structure.T;
import org.junit.Test;

import com.thinkaurelius.titan.graphdb.query.TitanPredicate;
public class TitanUtilsTest {

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

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