func TestSpecialGates(t *gotest.T) { … } func expect(t *gotest.T, gate featuregate.FeatureGate, expect map[featuregate.Feature]bool) { … } func TestSetFeatureGateInTest(t *gotest.T) { … } func TestSpecialGatesVersioned(t *gotest.T) { … } func TestDetectLeakToMainTest(t *gotest.T) { … } func TestDetectLeakToOtherSubtest(t *gotest.T) { … } func TestCannotDetectLeakFromSubtest(t *gotest.T) { … } func TestCannotDetectLeakFromTwoSubtestsWithDifferentFeatures(t *gotest.T) { … } func TestDetectEmulationVersionLeakToMainTest(t *gotest.T) { … } func TestNoLeakFromSameEmulationVersionToMainTest(t *gotest.T) { … } func TestDetectEmulationVersionLeakToOtherSubtest(t *gotest.T) { … } type ignoreFatalT … func (f *ignoreFatalT) Fatal(args ...any) { … } func (f *ignoreFatalT) Fatalf(format string, args ...any) { … } func cleanup() { … }