(t *testing.T, opts ...fixture.TestOption)
| 69 | } |
| 70 | |
| 71 | func Given(t *testing.T, opts ...fixture.TestOption) *Context { |
| 72 | t.Helper() |
| 73 | state := fixture.EnsureCleanState(t, opts...) |
| 74 | return GivenWithSameState(state) |
| 75 | } |
| 76 | |
| 77 | func GivenWithNamespace(t *testing.T, namespace string) *Context { |
| 78 | t.Helper() |