Files
baseapi/platformapi/fnpsapi/order_test.go
苏尹岚 12f890a505 fn test
2020-12-14 16:22:15 +08:00

14 lines
188 B
Go

package fnpsapi
import (
"testing"
)
func TestQueryOrder(t *testing.T) {
err := api.QueryOrder("11")
if err != nil {
t.Fatal(err)
}
// t.Log(utils.Format4Output(result, false))
}