(t *testing.T)
| 160 | } |
| 161 | |
| 162 | func TestFormatSuccessMessage(t *testing.T) { |
| 163 | output := FormatSuccessMessage("compilation completed") |
| 164 | if !strings.Contains(output, "compilation completed") { |
| 165 | t.Errorf("Expected output to contain message, got: %s", output) |
| 166 | } |
| 167 | if !strings.Contains(output, "✓") { |
| 168 | t.Errorf("Expected output to contain checkmark, got: %s", output) |
| 169 | } |
| 170 | } |
| 171 | |
| 172 | func TestFormatInfoMessage(t *testing.T) { |
| 173 | output := FormatInfoMessage("processing file") |
nothing calls this directly
no test coverage detected