You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tinkerpop.apache.org by "stephen mallette (JIRA)" <ji...@apache.org> on 2015/04/02 22:30:54 UTC

[jira] [Closed] (TINKERPOP3-596) Graphs can only OPT_OUT of the particular test which is language bound (i.e. Java8 or Groovy).

     [ https://issues.apache.org/jira/browse/TINKERPOP3-596?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stephen mallette closed TINKERPOP3-596.
---------------------------------------
    Resolution: Implemented

This feature was implemented as described.

> Graphs can only OPT_OUT of the particular test which is language bound (i.e. Java8 or Groovy).
> ----------------------------------------------------------------------------------------------
>
>                 Key: TINKERPOP3-596
>                 URL: https://issues.apache.org/jira/browse/TINKERPOP3-596
>             Project: TinkerPop 3
>          Issue Type: Improvement
>          Components: test-suite
>            Reporter: Marko A. Rodriguez
>            Assignee: stephen mallette
>             Fix For: 3.0.0.GA
>
>
> EXAMPLE:
> {code:java}
> @Graph.OptOut(
>         test = "org.apache.tinkerpop.gremlin.process.graph.traversal.step.map.AddVertexTest$Traversals",
>         method = "g_V_addVXlabel_animal_age_0X",
>         reason = "Neo4j global graph operators stream created vertices created after the access to the global iterator"
> )
> @Graph.OptOut(
>         test = "org.apache.tinkerpop.gremlin.process.graph.traversal.step.map.GroovyAddVertexTest$StandardTraversals",
>         method = "g_V_addVXlabel_animal_age_0X",
>         reason = "Neo4j global graph operators stream created vertices created after the access to the global iterator"
> )
> {code}
> What about Gremlin-Clojure and their test suite?
> Be best if it was just:
> {code:java}
> @Graph.OptOut(
>         test = "org.apache.tinkerpop.gremlin.process.graph.traversal.step.map.AddVertexTest",
>         method = "g_V_addVXlabel_animal_age_0X",
>         reason = "Neo4j global graph operators stream created vertices created after the access to the global iterator"
> )
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)