account_test.go 413 B

1234567891011121314151617181920
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. )
  6. func TestPubStat(t *testing.T) {
  7. once.Do(startService)
  8. if err := d.UpdateAccountExp(context.TODO(), 7593623, 120.00); err != nil {
  9. t.Errorf("d.UpdateAccountExp(%d) error(%v)", 7593623, err)
  10. }
  11. }
  12. func TestIncArchiveViews(t *testing.T) {
  13. once.Do(startService)
  14. if err := d.IncArchiveViews(context.TODO(), 7593623); err != nil {
  15. t.Errorf("error(%v)", err)
  16. }
  17. }