(t *testing.T)
| 59 | } |
| 60 | |
| 61 | func TestMatchQuery(t *testing.T) { |
| 62 | q := "MATCH (s)-[e]->(d) RETURN s,e,d" |
| 63 | res, err := graph.Query(q) |
| 64 | if err != nil { |
| 65 | t.Error(err) |
| 66 | } |
| 67 | |
| 68 | checkQueryResults(t, res) |
| 69 | } |
| 70 | |
| 71 | func TestMatchROQuery(t *testing.T) { |
| 72 | q := "MATCH (s)-[e]->(d) RETURN s,e,d" |
nothing calls this directly
no test coverage detected