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

14 lines
282 B
Go

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