This repository was archived by the owner on Sep 17, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
src/test/java/com/arangodb/tinkerpop/gremlin Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 1616
1717import com .arangodb .tinkerpop .gremlin .client .ArangoDBGraphClient ;
1818import 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 }
You can’t perform that action at this time.
0 commit comments