https://github.com/etcd-io/etcd
Raw File
Tip revision: ab20aa29a0d44189f73c68e73d5dcaf5ab947ab3 authored by Sam Batschelet on 04 June 2021, 01:39:37 UTC
version: 3.5.0-rc.0
Tip revision: ab20aa2
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