Files
mattermost/store/sqlstore/command_store_test.go

15 lines
299 B
Go
Raw Normal View History

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package sqlstore
import (
"testing"
2017-09-06 17:12:54 -05:00
"github.com/mattermost/mattermost-server/v5/store/storetest"
)
func TestCommandStore(t *testing.T) {
StoreTest(t, storetest.TestCommandStore)
}