summaryrefslogtreecommitdiff
path: root/libnetwork/testutils/context_windows.go
blob: 3ddb01560c42ce6c3cdc0ba38c4d51ad13b37de2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package testutils

import "testing"

type OSContext struct{}

func SetupTestOSContextEx(*testing.T) *OSContext {
	return nil
}

func (*OSContext) Cleanup(t *testing.T) {}

func (*OSContext) Set() (func(Logger), error) {
	return func(Logger) {}, nil
}