https://github.com/etcd-io/etcd
Raw File
Tip revision: 9a5533382d84999e4e79642e1ec0f8bfa9b70ba8 authored by Wenjia Zhang on 19 July 2024, 20:13:00 UTC
version: bump up to 3.5.15
Tip revision: 9a55333
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