https://github.com/etcd-io/etcd
Raw File
Tip revision: bf51a53a7e0452a7e44783c24ec048e6981dd2d7 authored by James Blair on 29 May 2024, 18:33:09 UTC
version: bump up to 3.5.14
Tip revision: bf51a53
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