ooni-probe-cli/internal/model/mocks/experimentinputprocessor.go
Simone Basso d0da224a2a
feat(oonirun): improve tests (#915)
See https://github.com/ooni/probe/issues/2184

While there, rename `runtimex.PanicIfFalse` to `runtimex.Assert` (it was about time...)
2022-08-31 18:40:27 +02:00

13 lines
288 B
Go

package mocks
import "context"
// ExperimentInputProcessor processes inputs running the given experiment.
type ExperimentInputProcessor struct {
MockRun func(ctx context.Context) error
}
func (eip *ExperimentInputProcessor) Run(ctx context.Context) error {
return eip.MockRun(ctx)
}