Files
mattermost/store/sqlstore/session_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.
2015-06-14 23:53:32 -08:00
package sqlstore
2015-06-14 23:53:32 -08:00
import (
"testing"
2017-09-06 17:12:54 -05:00
"github.com/mattermost/mattermost-server/v5/store/storetest"
2015-06-14 23:53:32 -08:00
)
func TestSessionStore(t *testing.T) {
StoreTest(t, storetest.TestSessionStore)
}