03708a90ef
* api cleaup * updates * wtf * updates * snapshot. * tweaks * snapshot * api tweaks. * updates * updates * updates * changes. * updates * updates * sequence => seq * dont need to use curl, just using wget * fixing examples
23 lines
514 B
Go
23 lines
514 B
Go
package chart
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/blendlabs/go-assert"
|
|
"github.com/wcharczuk/go-chart/util"
|
|
)
|
|
|
|
func TestRangeTranslate(t *testing.T) {
|
|
assert := assert.New(t)
|
|
values := []float64{1.0, 2.0, 2.5, 2.7, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0}
|
|
r := ContinuousRange{Domain: 1000}
|
|
r.Min, r.Max = util.Math.MinAndMax(values...)
|
|
|
|
// delta = ~7.0
|
|
// value = ~5.0
|
|
// domain = ~1000
|
|
// 5/8 * 1000 ~=
|
|
assert.Equal(0, r.Translate(1.0))
|
|
assert.Equal(1000, r.Translate(8.0))
|
|
assert.Equal(572, r.Translate(5.0))
|
|
}
|