(t *testing.T)
| 272 | } |
| 273 | |
| 274 | func TestSignature(t *testing.T) { |
| 275 | t.Parallel() |
| 276 | s := getSignature() |
| 277 | compareString(t, "", s.SleepString()) |
| 278 | s.SleepMax = 10 |
| 279 | compareString(t, "0~10 minutes", s.SleepString()) |
| 280 | s.SleepMin = 10 |
| 281 | compareString(t, "10 minutes", s.SleepString()) |
| 282 | } |
| 283 | |
| 284 | func TestSignature_Equal(t *testing.T) { |
| 285 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…