(t *testing.T, ctx context.Context)
| 596 | } |
| 597 | |
| 598 | func (s *Sensor) SensorLogsOrFail(t *testing.T, ctx context.Context) string { |
| 599 | logs, err := s.SensorLogs(ctx) |
| 600 | if err != nil { |
| 601 | t.Fatal("Cannot retrieve sensor logs:", err) |
| 602 | } |
| 603 | return logs |
| 604 | } |
| 605 | |
| 606 | func (s *Sensor) PrintState(ctx context.Context) { |
| 607 | log. |
no test coverage detected