(t *testing.T)
| 73 | } |
| 74 | |
| 75 | func TestStrings(t *testing.T) { |
| 76 | s := millionMessagesSecondSample(60) |
| 77 | if len(s.String()) == 0 { |
| 78 | t.Fatal("Sample didn't provide a String") |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | func TestGroupDuration(t *testing.T) { |
| 83 | sg := NewSampleGroup() |
nothing calls this directly
no test coverage detected