Package org.apache.tinkerpop.gremlin
Annotation Interface LoadGraphWith
Annotations to define a graph example to load from test resources prior to test execution. This annotation is
for use only with test that extend from
AbstractGremlinTest.
Note that the annotation assumes that the @{link GraphData} referenced by the annotation can be made available
to the graph in the test. In other words, even a graph that has "read-only" features, should have some method of
getting the data available to it. That said, graphs must minimally support the data types that the sample
data contains for the test to be executed.
If a graph implementation is "read-only", it can override the
GraphProvider.loadGraphData(org.apache.tinkerpop.gremlin.structure.Graph, LoadGraphWith, Class, String) method
to provide some other mechanism for making that data available to the graph in time for the test. See the
hadoop-gremlin implementation for more details.- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
Nested Class Summary
Nested Classes -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionThe name of the resource to load with full path. -
Field Summary
Fields
-
Field Details
-
RESOURCE_PATH_PREFIX
- See Also:
-
-
Element Details
-
value
LoadGraphWith.GraphData valueThe name of the resource to load with full path.- Default:
- CLASSIC
-