d0da224a2a
See https://github.com/ooni/probe/issues/2184 While there, rename `runtimex.PanicIfFalse` to `runtimex.Assert` (it was about time...)
13 lines
288 B
Go
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)
|
|
}
|