ooni-probe-cli/internal/model/mocks/experimentinputprocessor_test.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

23 lines
411 B
Go

package mocks
import (
"context"
"errors"
"testing"
)
func TestExperimentInputProcessor(t *testing.T) {
t.Run("Run", func(t *testing.T) {
expected := errors.New("mocked error")
eip := &ExperimentInputProcessor{
MockRun: func(ctx context.Context) error {
return expected
},
}
err := eip.Run(context.Background())
if !errors.Is(err, expected) {
t.Fatal("unexpected result")
}
})
}