(t string, args ...interface{})
| 101 | } |
| 102 | |
| 103 | func (c *ColorScheme) Redf(t string, args ...interface{}) string { |
| 104 | return c.Red(fmt.Sprintf(t, args...)) |
| 105 | } |
| 106 | |
| 107 | func (c *ColorScheme) Yellow(t string) string { |
| 108 | if !c.Enabled { |
no test coverage detected