File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
quickcheck-dynamic/src/Test/QuickCheck Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -195,13 +195,6 @@ class (forall a. Show (Action state a), Monad m) => RunModel state m where
195
195
postconditionOnFailure :: (state , state ) -> Action state a -> LookUp -> Either (Error state ) a -> Property
196
196
postconditionOnFailure _ _ _ _ = property True
197
197
198
- -- | Allows the user to attach additional information to the `Property` at each step of the process.
199
- -- This function is given the full transition that's been executed, including the start and ending
200
- -- `state`, the `Action`, the current environment to `Lookup` and the value produced by `perform`
201
- -- while executing this step.
202
- monitoring :: (state , state ) -> Action state a -> LookUp -> Either (Error state ) a -> Property -> Property
203
- monitoring _ _ _ _ prop = prop
204
-
205
198
-- | Allows the user to attach additional information to the `Property` if a positive action fails.
206
199
monitoringFailure :: state -> Action state a -> LookUp -> Error state -> Property -> Property
207
200
monitoringFailure _ _ _ _ prop = prop
@@ -542,5 +535,4 @@ runSteps s env ((v := act) : as) = do
542
535
| Right val <- ret = (var :== val) : env
543
536
| otherwise = env
544
537
stateTransition = (underlyingState s, underlyingState s')
545
- monitor $ monitoring @ state @ m stateTransition action (lookUpVar env') ret
546
538
pure (s', env', stateTransition)
You can’t perform that action at this time.
0 commit comments