grafana/pkg/services/star/starimpl/xorm_store_test.go
2022-08-17 11:17:23 -05:00

14 lines
262 B
Go

package starimpl
import (
"testing"
"github.com/grafana/grafana/pkg/services/sqlstore"
)
func TestIntegrationXormUserStarsDataAccess(t *testing.T) {
testIntegrationUserStarsDataAccess(t, func(ss *sqlstore.SQLStore) store {
return &sqlStore{db: ss}
})
}