15 строки
308 B
Go
15 строки
308 B
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package sqlstore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/mattermost-server/v5/store/storetest"
|
|
)
|
|
|
|
func TestRoleStore(t *testing.T) {
|
|
StoreTestWithSqlSupplier(t, storetest.TestRoleStore)
|
|
}
|