https://github.com/etcd-io/etcd
Raw File
Tip revision: 0452feec719fa8ad88ae343e66e9bb222965d75d authored by Marek Siarkowicz on 13 April 2022, 15:17:51 UTC
version: bump up to 3.5.3
Tip revision: 0452fee
main_test.go
// Copyright 2013 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package integration

import (
	"testing"

	"go.etcd.io/etcd/client/pkg/v3/testutil"
)

func TestMain(m *testing.M) {
	testutil.MustTestMainWithLeakDetection(m)
}
back to top