Improved interface
This commit is contained in:
@ -36,6 +36,20 @@ func TestPrint(t *testing.T) {
|
||||
color.RGB(0, 0, 1).Print("blue\n")
|
||||
}
|
||||
|
||||
func TestPrintf(t *testing.T) {
|
||||
color.Terminal = true
|
||||
|
||||
color.RGB(1, 0, 0).Printf("%s\n", "red")
|
||||
color.RGB(0, 1, 0).Printf("%s\n", "green")
|
||||
color.RGB(0, 0, 1).Printf("%s\n", "blue")
|
||||
|
||||
color.Terminal = false
|
||||
|
||||
color.RGB(1, 0, 0).Printf("%s\n", "red")
|
||||
color.RGB(0, 1, 0).Printf("%s\n", "green")
|
||||
color.RGB(0, 0, 1).Printf("%s\n", "blue")
|
||||
}
|
||||
|
||||
func TestPrintln(t *testing.T) {
|
||||
color.Terminal = true
|
||||
|
||||
|
Reference in New Issue
Block a user