style test
This commit is contained in:
parent
c5373ea0cd
commit
996633ef54
|
@ -0,0 +1,34 @@
|
|||
package style
|
||||
|
||||
import (
|
||||
"testing"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func TestColorBase_Regular(t *testing.T) {
|
||||
c := new(colorBase)
|
||||
strs := []string{"a", "b", "c"}
|
||||
input := make([]interface{}, len(strs))
|
||||
result := c.Bold(input)
|
||||
expected := fmt.Sprint(input)
|
||||
for i, s := range strs {
|
||||
input[i] = s
|
||||
}
|
||||
if result != expected{
|
||||
t.Error("Expected:", expected, "instead", result)
|
||||
}
|
||||
}
|
||||
|
||||
func TestColorBase_Bold(t *testing.T) {
|
||||
c := new(colorBase)
|
||||
strs := []string{"a", "b", "c"}
|
||||
input := make([]interface{}, len(strs))
|
||||
result := c.Bold(input)
|
||||
expected := fmt.Sprint(input)
|
||||
for i, s := range strs {
|
||||
input[i] = s
|
||||
}
|
||||
if result != expected{
|
||||
t.Error("Expected:", expected, "instead", result)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue