blob: c4e0b480c391dbaacbae2a21f7d835c4d4de6d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
package sqlstore
import (
"testing"
"github.com/mattermost/mattermost-server/store/storetest"
)
func TestComplianceStore(t *testing.T) {
StoreTest(t, storetest.TestComplianceStore)
}
|