Add lombok support to simple classes
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / dao / titan / TitanUtilsTest.java
1 package org.openecomp.sdc.be.dao.titan;
2
3 import com.thinkaurelius.titan.graphdb.query.TitanPredicate;
4 import org.apache.tinkerpop.gremlin.structure.T;
5 import org.junit.Test;
6
7 import java.util.Collection;
8 import java.util.Map;
9 import java.util.Map.Entry;
10 public class TitanUtilsTest {
11
12         @Test
13         public void testBuildNotInPredicate() throws Exception {
14                 String propKey = "";
15                 Collection<T> notInCollection = null;
16                 Map<String, Entry<TitanPredicate, Object>> result;
17
18                 // default test
19                 result = TitanUtils.buildNotInPredicate(propKey, notInCollection);
20         }
21 }