12 lines
248 B
Go
12 lines
248 B
Go
package chart
|
|
|
|
/*
|
|
func TestGenerateTicksWithStep(t *testing.T) {
|
|
assert := assert.New(t)
|
|
|
|
|
|
|
|
ticks := GenerateContinuousTicksWithStep(&ContinuousRange{Min: 1.0, Max: 10.0, Domain: 100}, 1.0, FloatValueFormatter, false)
|
|
assert.Len(ticks, 10)
|
|
}
|
|
*/
|