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 16
16
17
17
import com .arangodb .tinkerpop .gremlin .client .ArangoDBGraphClient ;
18
18
import com .arangodb .tinkerpop .gremlin .utils .ArangoDBConfigurationBuilder ;
19
+ import org .apache .tinkerpop .gremlin .structure .VertexTest ;
19
20
20
21
/**
21
22
* The Class ArangoDBGraphProvider. This provider assumes that there is a local ArangoDB running (i.e.
@@ -249,6 +250,14 @@ else if (testMethodName.startsWith("shouldThrowOnGraphAddEdge")) {
249
250
case "shouldConstructReferenceVertex" :
250
251
builder .withVertexCollection ("blah" );
251
252
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 ;
252
261
default :
253
262
System .out .println ("case \" " + testMethodName + "\" :" );
254
263
}
You can’t perform that action at this time.
0 commit comments