RunProcesses starts one frps and zero or more frpc processes from templates.
(serverTemplate string, clientTemplates []string)
| 17 | |
| 18 | // RunProcesses starts one frps and zero or more frpc processes from templates. |
| 19 | func (f *Framework) RunProcesses(serverTemplate string, clientTemplates []string) (*process.Process, []*process.Process) { |
| 20 | return f.RunProcessesWithBinaries(TestContext.FRPServerPath, TestContext.FRPClientPath, serverTemplate, clientTemplates) |
| 21 | } |
| 22 | |
| 23 | // RunProcessesWithBinaries starts one frps and zero or more frpc processes with explicit binary paths. |
| 24 | func (f *Framework) RunProcessesWithBinaries( |
no test coverage detected