github.com/kaisenlinux/docker.io@v0.0.0-20230510090727-ea55db55fac7/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 nil, ErrNotImplemented
    15  }
    16  
    17  func verifySandbox(t *testing.T, s Sandbox) {
    18  	return
    19  }