New creates an ephemeral admin service and server for testing. See the docstring for the returned Fixture for details.
(t *testing.T)
| 74 | // New creates an ephemeral admin service and server for testing. |
| 75 | // See the docstring for the returned Fixture for details. |
| 76 | func New(t *testing.T) *Fixture { |
| 77 | return NewWithOptionalRuntime(t, false) |
| 78 | } |
| 79 | |
| 80 | func NewWithOptionalRuntime(t *testing.T, startRt bool) *Fixture { |
| 81 | ctx := t.Context() |