github.com/mad-app/mattermost-server@v5.11.1+incompatible/api4/main_test.go (about) 1 // Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved. 2 // See License.txt for license information. 3 4 package api4 5 6 import ( 7 "testing" 8 9 "github.com/mattermost/mattermost-server/testlib" 10 ) 11 12 var mainHelper *testlib.MainHelper 13 14 func TestMain(m *testing.M) { 15 var options = testlib.HelperOptions{ 16 EnableStore: true, 17 EnableResources: true, 18 } 19 20 mainHelper = testlib.NewMainHelperWithOptions(&options) 21 defer mainHelper.Close() 22 23 UseTestStore(mainHelper.GetStore()) 24 mainHelper.Main(m) 25 }