(t *testing.T)
| 123 | } |
| 124 | |
| 125 | func TestGetSummaryStr(t *testing.T) { |
| 126 | cs := &ContinuousStats{} |
| 127 | data := []string{"10", "20", "30"} |
| 128 | |
| 129 | str := cs.getSummaryStr(data) |
| 130 | if len(str) == 0 { |
| 131 | t.Error("getSummaryStr should return non-empty string") |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | // ======================================== |
| 136 | // Performance Tests |
nothing calls this directly
no test coverage detected