coupon_dal_test.go 190 B

12345678910111213141516
  1. package dal
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestGetCoupon(t *testing.T) {
  7. cid := 2
  8. citem, err := DefaultCouponDal.Get(cid,"")
  9. if err != nil {
  10. t.Fatal(err)
  11. }
  12. fmt.Println(citem)
  13. }