gitee.com/sy_183/go-common@v1.0.5-0.20231205030221-958cfe129b47/sgr/sgr_test.go (about) 1 package sgr 2 3 import ( 4 "testing" 5 ) 6 7 func TestSGR(t *testing.T) { 8 println(WrapSGR("hello", NewSGR(Bold).Options(UlRGB24Option(0x629755)))) 9 println(WrapRGB24("hi", 0x629755)) 10 println(WrapColor("lili", FgCyan)) 11 println(WrapColor256("pip", 3)) 12 }