mirror of
https://github.com/clearlinux/libnetwork.git
synced 2026-09-03 20:31:30 +00:00
9 lines
193 B
Go
9 lines
193 B
Go
package sandbox
|
|
|
|
import "testing"
|
|
|
|
// SetupTestOSContext sets up a separate test OS context in which tests will be executed.
|
|
func SetupTestOSContext(t *testing.T) func() {
|
|
return func() {}
|
|
}
|