field_test.go 602 字节
package domain

import (
	"github.com/stretchr/testify/assert"
	"testing"
)

func TestRoundFieldValue(t *testing.T) {
	floatFiled := &Field{
		SQLType: Float.ToString(),
	}
	inputs := []struct {
		v    string
		f    *Field
		want string
	}{
		{
			v:    "0.12359999999999999",
			f:    floatFiled,
			want: "0.1236",
		},
		{
			v:    "0.12360000000000001",
			f:    floatFiled,
			want: "0.1236",
		},
		{
			v:    "0.12359999999999995",
			f:    floatFiled,
			want: "0.1236",
		},
	}
	for _, input := range inputs {
		got := RoundFieldValue(input.f, input.v)
		assert.Equal(t, input.want, got)
	}
}