18 lines
386 B
Go
18 lines
386 B
Go
package tchart_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/derailed/k9s/internal/tchart"
|
|
"github.com/derailed/tcell/v2"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCoSeriesColorNames(t *testing.T) {
|
|
c := tchart.NewComponent("fred")
|
|
|
|
c.SetSeriesColors(tcell.ColorGreen, tcell.ColorBlue, tcell.ColorRed)
|
|
|
|
assert.Equal(t, []string{"green", "blue", "red"}, c.GetSeriesColorNames())
|
|
}
|