mirror of
https://github.com/kubesphere/kubekey.git
synced 2025-12-28 20:22:45 +00:00
56 lines
1.1 KiB
Go
56 lines
1.1 KiB
Go
/*
|
|
Copyright 2021 The KubeSphere Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package util
|
|
|
|
import "testing"
|
|
|
|
func TestRound(t *testing.T) {
|
|
type args struct {
|
|
val float64
|
|
precision int
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
args args
|
|
want float64
|
|
}{
|
|
{
|
|
name: "test1",
|
|
args: args{
|
|
val: 0.5555,
|
|
precision: 0,
|
|
},
|
|
want: 1,
|
|
},
|
|
{
|
|
name: "test2",
|
|
args: args{
|
|
val: 0.4555,
|
|
precision: 0,
|
|
},
|
|
want: 0,
|
|
},
|
|
}
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
if got := Round(tt.args.val, tt.args.precision); got != tt.want {
|
|
t.Errorf("Round() = %v, want %v", got, tt.want)
|
|
}
|
|
})
|
|
}
|
|
}
|