mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
18 lines
328 B
Go
18 lines
328 B
Go
package binance
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func Test_newClientOrderID(t *testing.T) {
|
|
cID := newSpotClientOrderID("")
|
|
assert.Len(t, cID, 32)
|
|
strings.HasPrefix(cID, "x-" + spotBrokerID)
|
|
|
|
cID = newSpotClientOrderID("myid1")
|
|
assert.Equal(t, cID, "x-" + spotBrokerID + "myid1")
|
|
}
|