2023-08-11 13:12:13 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
2023-06-06 21:09:48 +00:00
|
|
|
package resourcetest
|
|
|
|
|
2023-12-06 17:11:32 +00:00
|
|
|
import "github.com/hashicorp/consul/sdk/testutil"
|
|
|
|
|
2023-06-06 21:09:48 +00:00
|
|
|
// T represents the subset of testing.T methods that will be used
|
|
|
|
// by the various functionality in this package
|
|
|
|
type T interface {
|
2023-12-06 17:11:32 +00:00
|
|
|
testutil.TestingTB
|
2023-06-06 21:09:48 +00:00
|
|
|
}
|