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
19
internal/model/mocks/experimentinputloader.go
Normal file
19
internal/model/mocks/experimentinputloader.go
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package mocks
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/ooni/probe-cli/v3/internal/model"
|
||||
)
|
||||
|
||||
// ExperimentInputLoader mocks model.ExperimentInputLoader
|
||||
type ExperimentInputLoader struct {
|
||||
MockLoad func(ctx context.Context) ([]model.OOAPIURLInfo, error)
|
||||
}
|
||||
|
||||
var _ model.ExperimentInputLoader = &ExperimentInputLoader{}
|
||||
|
||||
// Load calls MockLoad
|
||||
func (eil *ExperimentInputLoader) Load(ctx context.Context) ([]model.OOAPIURLInfo, error) {
|
||||
return eil.MockLoad(ctx)
|
||||
}
|
||||
Loading…
Reference in a new issue