archive_test.go 190 B

1234567891011121314
  1. package dao
  2. import (
  3. "context"
  4. "testing"
  5. . "github.com/smartystreets/goconvey/convey"
  6. )
  7. func Test_MaxAID(t *testing.T) {
  8. Convey("MaxAID", t, func() {
  9. d.MaxAID(context.TODO())
  10. })
  11. }