(t *testing.T)
| 66 | } |
| 67 | |
| 68 | func TestThoughput(t *testing.T) { |
| 69 | s := millionMessagesSecondSample(60) |
| 70 | if s.Throughput() != Million*MsgSize { |
| 71 | t.Fatalf("Expected throughput at %d million bytes/sec", MsgSize) |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | func TestStrings(t *testing.T) { |
| 76 | s := millionMessagesSecondSample(60) |
nothing calls this directly
no test coverage detected