(t *testing.T, schemaStr string)
| 142 | } |
| 143 | |
| 144 | func initTest(t *testing.T, schemaStr string) { |
| 145 | err := schema.ParseBytes([]byte(schemaStr), 1) |
| 146 | require.NoError(t, err) |
| 147 | populateGraph(t) |
| 148 | } |
| 149 | |
| 150 | func initClusterTest(t *testing.T, schemaStr string) *dgo.Dgraph { |
| 151 | dg, err := testutil.DgraphClient(testutil.GetSockAddr()) |
no test coverage detected