github.com/Heebron/moby@v0.0.0-20221111184709-6eab4f55faf7/libnetwork/osl/sandbox_unsupported_test.go (about) 1 //go:build !linux 2 // +build !linux 3 4 package osl 5 6 import ( 7 "errors" 8 "testing" 9 ) 10 11 var ErrNotImplemented = errors.New("not implemented") 12 13 func newKey(t *testing.T) (string, error) { 14 return "", ErrNotImplemented 15 } 16 17 func verifySandbox(t *testing.T, s Sandbox) { 18 return 19 }