* Add model.UserCountOptions to analyticsActiveCount method Add new test for analyticsActiveCount method * Add ability to delete entries from status store, by calling SQl directly. There is no method available to delete entries from the status store interace * Instead of cleaning up after a test by passing userIds, just delete all records in the status table and start fresh * Remove Comment
15 строки
305 B
Go
15 строки
305 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/store/storetest"
|
|
)
|
|
|
|
func TestUserStore(t *testing.T) {
|
|
StoreTestWithSqlSupplier(t, storetest.TestUserStore)
|
|
}
|