refactor: change project structure and package name

This commit is contained in:
Rico 2022-08-27 17:21:43 +02:00
parent c1468e8ae4
commit ad10e9a062
No known key found for this signature in database
GPG key ID: 91F477359C5B7AD3
163 changed files with 104 additions and 135 deletions

69
pkg/chart/value_test.go Normal file
View file

@ -0,0 +1,69 @@
package chart
import (
"testing"
"github.com/d-Rickyy-b/go-chart-x/v2/testutil"
)
func TestValuesValues(t *testing.T) {
// replaced new assertions helper
vs := []Value{
{Value: 10, Label: "Blue"},
{Value: 9, Label: "Green"},
{Value: 8, Label: "Gray"},
{Value: 7, Label: "Orange"},
{Value: 6, Label: "HEANG"},
{Value: 5, Label: "??"},
{Value: 2, Label: "!!"},
}
values := Values(vs).Values()
testutil.AssertLen(t, values, 7)
testutil.AssertEqual(t, 10, values[0])
testutil.AssertEqual(t, 9, values[1])
testutil.AssertEqual(t, 8, values[2])
testutil.AssertEqual(t, 7, values[3])
testutil.AssertEqual(t, 6, values[4])
testutil.AssertEqual(t, 5, values[5])
testutil.AssertEqual(t, 2, values[6])
}
func TestValuesValuesNormalized(t *testing.T) {
// replaced new assertions helper
vs := []Value{
{Value: 10, Label: "Blue"},
{Value: 9, Label: "Green"},
{Value: 8, Label: "Gray"},
{Value: 7, Label: "Orange"},
{Value: 6, Label: "HEANG"},
{Value: 5, Label: "??"},
{Value: 2, Label: "!!"},
}
values := Values(vs).ValuesNormalized()
testutil.AssertLen(t, values, 7)
testutil.AssertEqual(t, 0.2127, values[0])
testutil.AssertEqual(t, 0.0425, values[6])
}
func TestValuesNormalize(t *testing.T) {
// replaced new assertions helper
vs := []Value{
{Value: 10, Label: "Blue"},
{Value: 9, Label: "Green"},
{Value: 8, Label: "Gray"},
{Value: 7, Label: "Orange"},
{Value: 6, Label: "HEANG"},
{Value: 5, Label: "??"},
{Value: 2, Label: "!!"},
}
values := Values(vs).Normalize()
testutil.AssertLen(t, values, 7)
testutil.AssertEqual(t, 0.2127, values[0].Value)
testutil.AssertEqual(t, 0.0425, values[6].Value)
}