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
|
|
@ -6,10 +6,8 @@ import (
|
|||
"github.com/ooni/probe-cli/v3/internal/model"
|
||||
)
|
||||
|
||||
// Saver saves a measurement on some persistent storage.
|
||||
type Saver interface {
|
||||
SaveMeasurement(m *model.Measurement) error
|
||||
}
|
||||
// Saver is an alias for model.Saver.
|
||||
type Saver = model.Saver
|
||||
|
||||
// SaverConfig is the configuration for creating a new Saver.
|
||||
type SaverConfig struct {
|
||||
|
|
|
|||
Loading…
Reference in a new issue