17 lines
268 B
Go
17 lines
268 B
Go
package nettests
|
|
|
|
// Tor test implementation
|
|
type Tor struct {
|
|
}
|
|
|
|
// Run starts the test
|
|
func (h Tor) Run(ctl *Controller) error {
|
|
builder, err := ctl.Session.NewExperimentBuilder(
|
|
"tor",
|
|
)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return ctl.Run(builder, []string{""})
|
|
}
|