Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit 74db202

Browse files
rashtaoarcanefoam
authored andcommitted
test fixes
1 parent 6d16048 commit 74db202

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/test/java/com/arangodb/tinkerpop/gremlin/ArangoDBGraphProvider.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import com.arangodb.tinkerpop.gremlin.client.ArangoDBGraphClient;
1818
import com.arangodb.tinkerpop.gremlin.utils.ArangoDBConfigurationBuilder;
19+
import org.apache.tinkerpop.gremlin.structure.VertexTest;
1920

2021
/**
2122
* The Class ArangoDBGraphProvider. This provider assumes that there is a local ArangoDB running (i.e.
@@ -249,6 +250,14 @@ else if (testMethodName.startsWith("shouldThrowOnGraphAddEdge")) {
249250
case "shouldConstructReferenceVertex":
250251
builder.withVertexCollection("blah");
251252
break;
253+
case "shouldHaveExceptionConsistencyWhenUsingSystemVertexLabel":
254+
case "shouldHaveExceptionConsistencyWhenUsingEmptyVertexLabel":
255+
case "shouldHaveExceptionConsistencyWhenUsingEmptyVertexLabelOnOverload":
256+
case "shouldHaveExceptionConsistencyWhenUsingSystemVertexLabelOnOverload":
257+
if (VertexTest.class.equals(test.getEnclosingClass())) {
258+
builder.withVertexCollection("foo");
259+
}
260+
break;
252261
default:
253262
System.out.println("case \"" + testMethodName + "\":");
254263
}

0 commit comments

Comments
 (0)