Improved interface

This commit is contained in:
2024-03-11 22:08:28 +01:00
parent 71dd96406c
commit 8ad0b2e182
5 changed files with 58 additions and 20 deletions

@ -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