package vt100 import ( "fmt" "testing" ) func ExampleNormal() { fmt.Println(Normal("This is a normal line")) // Output: This is a normal line } func ExampleBold() { fmt.Println(Bold("This is a bold line")) // Output: This is a bold line } func ExampleUnderline() { fmt.Println(Underline("This line is underlined")) // Output: This line is underlined } func ExampleBlink() { fmt.Println(Blink("This is a blinking line")) // Output: This is a blinking line } func ExampleInverse() { fmt.Println(Inverse("This is inverse video")) // Output: This is inverse video } func ExampleDoubleWidth() { fmt.Println(DoubleWidth("This is double width")) // Output: #6This is double width } func ExampleDoubleHeight() { fmt.Println(DoubleHeight("This is double height")) // Output: #3This is double height // #4This is double height } func TestDisplay(_ *testing.T) { ExampleNormal() ExampleBold() ExampleUnderline() ExampleBlink() ExampleInverse() ExampleDoubleWidth() ExampleDoubleHeight() }