2019-12-28 17:48:07 +01:00
|
|
|
package nettests
|
|
|
|
|
|
|
|
// Psiphon test implementation
|
|
|
|
type Psiphon struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run starts the test
|
|
|
|
func (h Psiphon) Run(ctl *Controller) error {
|
2020-06-04 11:19:38 +02:00
|
|
|
builder, err := ctl.Session.NewExperimentBuilder(
|
2019-12-28 17:48:07 +01:00
|
|
|
"psiphon",
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ctl.Run(builder, []string{""})
|
|
|
|
}
|