package ualert import ( "testing" "github.com/grafana/grafana/pkg/infra/log" "github.com/grafana/grafana/pkg/services/sqlstore/migrator" "github.com/prometheus/alertmanager/silence/silencepb" ) // newTestMigration generates an empty migration to use in tests. func newTestMigration(t *testing.T) *migration { t.Helper() return &migration{ mg: &migrator.Migrator{ Logger: log.New("test"), }, seenUIDs: uidSet{ set: make(map[string]struct{}), }, silences: make(map[int64][]*silencepb.MeshSilence), } }