Welcome to mirror list, hosted at ThFree Co, Russian Federation.

testhelper_test.go « streamcache « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06bf7389493a3317ed8feb05f8b70b1febc2217f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package streamcache

import (
	"os"
	"testing"

	"gitlab.com/gitlab-org/gitaly/internal/testhelper"
)

func TestMain(m *testing.M) { os.Exit(testMain(m)) }

func testMain(m *testing.M) int {
	defer testhelper.Configure()()
	return m.Run()
}