mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
44 lines
793 B
Go
44 lines
793 B
Go
|
package bbgo
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestAdjustQuantityByMinAmount(t *testing.T) {
|
||
|
type args struct {
|
||
|
quantity, price, minAmount float64
|
||
|
}
|
||
|
type testcase struct {
|
||
|
name string
|
||
|
args args
|
||
|
wanted float64
|
||
|
}
|
||
|
|
||
|
tests := []testcase{
|
||
|
{
|
||
|
name: "amount too small",
|
||
|
args: args{0.1, 10.0, 10.0},
|
||
|
wanted: 1.0,
|
||
|
},
|
||
|
{
|
||
|
name: "amount equals to min amount",
|
||
|
args: args{1.0, 10.0, 10.0},
|
||
|
wanted: 1.0,
|
||
|
},
|
||
|
{
|
||
|
name: "amount is greater than min amount",
|
||
|
args: args{2.0, 10.0, 10.0},
|
||
|
wanted: 2.0,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, test := range tests {
|
||
|
t.Run(test.name, func(t *testing.T) {
|
||
|
q := adjustQuantityByMinAmount(test.args.quantity, test.args.price, test.args.minAmount)
|
||
|
assert.Equal(t, test.wanted, q)
|
||
|
})
|
||
|
}
|
||
|
}
|