package statement import ( "testing" "github.com/influxdata/influxdb/stress/v2/stress_client" ) func TestGoSetID(t *testing.T) { e := newTestGo() newID := "oaijnifo" e.SetID(newID) if e.StatementID != newID { t.Errorf("Expected: %v\nGot: %v\n", newID, e.StatementID) } } func TestGoRun(t *testing.T) { e := newTestGo() s, _, _ := stressClient.NewTestStressTest() e.Run(s) if e == nil { t.Fail() } } func TestGoReport(t *testing.T) { e := newTestGo() s, _, _ := stressClient.NewTestStressTest() report := e.Report(s) if report != "Go " { t.Errorf("Expected: %v\nGot: %v\n", "Go ", report) } } func newTestGo() *GoStatement { return &GoStatement{ Statement: newTestExec(), StatementID: "fooID", } }