(t string, args ...interface{})
| 112 | } |
| 113 | |
| 114 | func (c *ColorScheme) Yellowf(t string, args ...interface{}) string { |
| 115 | return c.Yellow(fmt.Sprintf(t, args...)) |
| 116 | } |
| 117 | |
| 118 | func (c *ColorScheme) Green(t string) string { |
| 119 | if !c.Enabled { |
no test coverage detected