()
| 27 | } |
| 28 | |
| 29 | func newBenchmarkTask() task.Task { |
| 30 | uuid, _ := uuid.NewV4() |
| 31 | id := uuid.String() |
| 32 | |
| 33 | return &mockTaskBench{ |
| 34 | Id: id, |
| 35 | Type: "BenchmarkTask", |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | func (t *mockTaskBench) GetId() string { return t.Id } |
| 40 | func (t *mockTaskBench) GetType() task.TaskType { return t.Type } |
no test coverage detected