30 lines
715 B
Go
30 lines
715 B
Go
package mtwm
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"git.rosy.net.cn/baseapi/utils"
|
|
_ "git.rosy.net.cn/jx-callback/business/jxcallback/orderman"
|
|
"git.rosy.net.cn/jx-callback/globals"
|
|
"git.rosy.net.cn/jx-callback/globals/api"
|
|
"git.rosy.net.cn/jx-callback/globals/beegodb"
|
|
"github.com/astaxie/beego"
|
|
)
|
|
|
|
func init() {
|
|
beego.InitBeegoBeforeTest("/Users/xujianhua/go/src/git.rosy.net.cn/jx-callback/conf/app.conf")
|
|
// beego.BConfig.RunMode = "dev" // InitBeegoBeforeTest会将runmode设置为test
|
|
|
|
globals.Init()
|
|
beegodb.Init()
|
|
api.Init()
|
|
}
|
|
|
|
func TestGetVendorCategories(t *testing.T) {
|
|
result, err := new(PurchaseHandler).GetVendorCategories()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Log(utils.Format4Output(result, false))
|
|
}
|