67 lines
1.4 KiB
Go
67 lines
1.4 KiB
Go
package dadaapi
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestQueryBillBalance(t *testing.T) {
|
|
dadaapi.QueryBillBalance()
|
|
}
|
|
func TestBalanceRecharge(t *testing.T) {
|
|
result, err := dadaapi.BalanceRecharge(&RechargeParam{
|
|
Amount: 0.01,
|
|
Category: "H5",
|
|
NotifyUrl: "",
|
|
})
|
|
fmt.Println(result)
|
|
fmt.Println(err)
|
|
}
|
|
|
|
//
|
|
//import (
|
|
// "testing"
|
|
//
|
|
// "git.rosy.net.cn/baseapi"
|
|
// "git.rosy.net.cn/baseapi/utils"
|
|
//)
|
|
//
|
|
//func TestShopDetail(t *testing.T) {
|
|
// result, err := dadaapi.ShopDetail("18180948107")
|
|
// if err != nil {
|
|
// t.Fatal(err)
|
|
// }
|
|
// baseapi.SugarLogger.Debug(utils.Format4Output(result, false))
|
|
//}
|
|
//
|
|
//func TestShopAdd(t *testing.T) {
|
|
// shopInfo := &ShopInfo{
|
|
// OriginShopID: "181809481071",
|
|
// StationName: "京西大本营2",
|
|
// Business: BusinessTypeFruitVegetable,
|
|
// CityName: "成都市",
|
|
// AreaName: "金牛区",
|
|
// StationAddress: "西南交通大学科技大厦二楼",
|
|
// Lng: 104.056844,
|
|
// Lat: 30.695151,
|
|
// ContactName: "徐先生",
|
|
// Phone: "18180948107",
|
|
// }
|
|
// result, err := dadaapi.ShopAdd(shopInfo)
|
|
// if err != nil {
|
|
// t.Fatal(err)
|
|
// }
|
|
// baseapi.SugarLogger.Debug(result)
|
|
//}
|
|
//
|
|
//func TestShopUpdate(t *testing.T) {
|
|
// shopInfo := &ShopInfo{
|
|
// OriginShopID: "666872",
|
|
// Status: 1,
|
|
// }
|
|
// err := dadaapi.ShopUpdate(shopInfo)
|
|
// if err != nil {
|
|
// t.Fatal(err)
|
|
// }
|
|
//}
|