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...)
This commit is contained in:
parent
a8a29cc0dd
commit
d0da224a2a
32 changed files with 1837 additions and 112 deletions
12
internal/model/mocks/experimentinputprocessor.go
Normal file
12
internal/model/mocks/experimentinputprocessor.go
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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)
|
||||
}
|
||||
Loading…
Reference in a new issue