qbtrade/pkg/strategy/xbalance/strategy_test.go
2024-06-27 22:42:38 +08:00

20 lines
469 B
Go

package xbalance
import (
"testing"
"git.qtrade.icu/lychiyu/qbtrade/pkg/fixedpoint"
"github.com/stretchr/testify/assert"
)
func TestState_PlainText(t *testing.T) {
var state = State{
Asset: "USDT",
DailyNumberOfTransfers: 1,
DailyAmountOfTransfers: fixedpoint.NewFromFloat(1000.0),
Since: 0,
}
assert.Equal(t, "USDT transfer stats:\ndaily number of transfers: 1\ndaily amount of transfers 1000", state.PlainText())
}