- refactor result parser.

This commit is contained in:
gazebo
2018-08-29 23:23:34 +08:00
parent cc7be396ea
commit e0c1aae0fc
10 changed files with 466 additions and 270 deletions

View File

@@ -0,0 +1,15 @@
package jdapi
import (
"testing"
)
func TestQueryOassBussMoney(t *testing.T) {
bussResult, bussErr := jdapi.QueryOassBussMoney("815536199000222")
if bussErr != nil {
t.Error(bussErr.Error())
}
if len(bussResult) <= 0 {
t.Error("错误返回数据长度不该为0")
}
}