You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
475 B
29 lines
475 B
package dao |
|
|
|
import ( |
|
"testing" |
|
|
|
"go-common/app/admin/ep/melloi/model" |
|
|
|
. "github.com/smartystreets/goconvey/convey" |
|
) |
|
|
|
var ( |
|
oa = model.OrderAdmin{ |
|
UserName: "hujianping", |
|
} |
|
) |
|
|
|
func Test_OrderAdmin(t *testing.T) { |
|
|
|
Convey("test AddOrderAdmin", t, func() { |
|
err := d.AddOrderAdmin(&oa) |
|
So(err, ShouldBeNil) |
|
}) |
|
|
|
Convey("test QueryOrderAdmin", t, func() { |
|
var admin *model.OrderAdmin |
|
admin, _ = d.QueryOrderAdmin(oa.UserName) |
|
So(admin, ShouldNotBeNil) |
|
}) |
|
}
|
|
|