report_test.go 284 B

1234567891011121314151617
  1. package growingio_test
  2. import (
  3. "strconv"
  4. "fpdxfeed/growingio"
  5. "testing"
  6. )
  7. func TestReport(t *testing.T) {
  8. report := growingio.NewReportPartnerInfo(strconv.Itoa(11))
  9. report.SetPartnerSell("true")
  10. report.SetPartnerLevel("new")
  11. report.SetCanNotice("false")
  12. report.DoSend()
  13. }