Upgrade SDC from Titan to Janus Graph
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / UpdatePropertyOnVertexTest.java
index 4db5c06..4e52ad5 100644 (file)
@@ -1,6 +1,6 @@
 package org.openecomp.sdc.asdctool.impl;
 
-import com.thinkaurelius.titan.core.TitanGraph;
+import org.janusgraph.core.JanusGraph;
 import org.junit.Test;
 
 import java.util.List;
@@ -15,8 +15,8 @@ public class UpdatePropertyOnVertexTest {
        @Test(expected=IllegalArgumentException.class)
        public void testOpenGraph() throws Exception {
                UpdatePropertyOnVertex testSubject;
-               String titanFileLocation = "";
-               TitanGraph result;
+               String janusGraphFileLocation = "";
+               JanusGraph result;
 
                // default test
                testSubject = createTestSubject();
@@ -26,13 +26,13 @@ public class UpdatePropertyOnVertexTest {
        @Test(expected=NullPointerException.class)
        public void testUpdatePropertyOnServiceAtLeastCertified() throws Exception {
                UpdatePropertyOnVertex testSubject;
-               String titanFile = "";
+               String janusGraphFile = "";
                Map<String, Object> keyValueToSet = null;
                List<Map<String, Object>> orCriteria = null;
                Integer result;
 
                // default test
                testSubject = createTestSubject();
-               result = testSubject.updatePropertyOnServiceAtLeastCertified(titanFile, keyValueToSet, orCriteria);
+               result = testSubject.updatePropertyOnServiceAtLeastCertified(janusGraphFile, keyValueToSet, orCriteria);
        }
 }
\ No newline at end of file