go-common/app/admin/main/dm/dao/mysql_advance_test.go

14 lines
196 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package dao
import (
"context"
"testing"
)
func TestAdvances(t *testing.T) {
_, _, err := testDao.Advances(context.TODO(), 27515260, "all", "all", 1, 20)
if err != nil {
t.Error(err)
}
}