BeforeTestExternal initializes test context and is targeted for external APIs. In general the `integration` package is not targeted to be used outside of etcd project, but till the dedicated package is developed, this is the best entry point so far (without backward compatibility promise).
(t testutil.TB)
| 80 | // etcd project, but till the dedicated package is developed, this is |
| 81 | // the best entry point so far (without backward compatibility promise). |
| 82 | func BeforeTestExternal(t testutil.TB) { |
| 83 | BeforeTest(t, WithoutSkipInShort(), WithoutGoLeakDetection()) |
| 84 | } |
| 85 | |
| 86 | func BeforeTest(t testutil.TB, opts ...TestOption) { |
| 87 | t.Helper() |
nothing calls this directly
no test coverage detected
searching dependent graphs…