Files
multica/server/pkg/agent/agent_test_executable_test.go

12 lines
177 B
Go

package agent
import (
"path/filepath"
"testing"
)
func missingAgentExecutable(tb testing.TB, name string) string {
tb.Helper()
return filepath.Join(tb.TempDir(), name)
}