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