mysql_advance_test.go 196 B

12345678910111213
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. )
  6. func TestAdvances(t *testing.T) {
  7. _, _, err := testDao.Advances(context.TODO(), 27515260, "all", "all", 1, 20)
  8. if err != nil {
  9. t.Error(err)
  10. }
  11. }