2017-10-06 11:08:59 -07:00
|
|
|
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
2019-11-29 12:59:40 +01:00
|
|
|
// See LICENSE.txt for license information.
|
2016-01-06 21:09:05 -06:00
|
|
|
|
2017-09-25 09:11:25 -05:00
|
|
|
package sqlstore
|
2016-01-06 21:09:05 -06:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
2017-09-06 17:12:54 -05:00
|
|
|
|
2019-11-28 14:39:38 +01:00
|
|
|
"github.com/mattermost/mattermost-server/v5/store/storetest"
|
2016-01-06 21:09:05 -06:00
|
|
|
)
|
|
|
|
|
|
2017-10-06 11:08:59 -07:00
|
|
|
func TestCommandStore(t *testing.T) {
|
|
|
|
|
StoreTest(t, storetest.TestCommandStore)
|
2016-02-25 12:32:46 -05:00
|
|
|
}
|