14 lines
203 B
Go
14 lines
203 B
Go
|
package testutil
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestContext(t *testing.T) context.Context {
|
||
|
t.Helper()
|
||
|
ctx, cancel := context.WithCancel(context.Background())
|
||
|
t.Cleanup(cancel)
|
||
|
return ctx
|
||
|
}
|