aso_full_migration_test.go 243 B

1234567891011121314
  1. package service
  2. import (
  3. "testing"
  4. . "github.com/smartystreets/goconvey/convey"
  5. )
  6. func TestService_FullMigration(t *testing.T) {
  7. once.Do(startService)
  8. Convey("test full migration ", t, func() {
  9. s.fullMigration(0, 10, 5, 50, "")
  10. })
  11. }