Package org.jbehave.core.steps
Interface StepMonitor
-
- All Known Implementing Classes:
ContextStepMonitor,DelegatingStepMonitor,MatchingStepMonitor,NullStepMonitor,PrintingStepMonitor,PrintStreamStepMonitor,SilentStepMonitor
public interface StepMonitorInterface to monitor step events
-
-
Method Summary
Modifier and Type Method Description voidafterPerforming(String step, boolean dryRun, Method method)voidbeforePerforming(String step, boolean dryRun, Method method)voidconvertedValueOfType(String value, Type type, Object converted, Queue<Class<?>> converterClasses)voidfoundParameter(String parameter, int position)voidstepMatchesPattern(String step, boolean matches, StepPattern stepPattern, Method method, Object stepsInstance)voidstepMatchesType(String stepAsString, String previousAsString, boolean matchesType, StepType stepType, Method method, Object stepsInstance)voidusingAnnotatedNameForParameter(String name, int position)voidusingNaturalOrderForParameter(int position)voidusingParameterNameForParameter(String name, int position)voidusingStepsContextParameter(String parameter)voidusingTableAnnotatedNameForParameter(String name, int position)voidusingTableParameterNameForParameter(String name, int position)
-
-
-
Method Detail
-
stepMatchesType
void stepMatchesType(String stepAsString, String previousAsString, boolean matchesType, StepType stepType, Method method, Object stepsInstance)
-
stepMatchesPattern
void stepMatchesPattern(String step, boolean matches, StepPattern stepPattern, Method method, Object stepsInstance)
-
convertedValueOfType
void convertedValueOfType(String value, Type type, Object converted, Queue<Class<?>> converterClasses)
-
usingAnnotatedNameForParameter
void usingAnnotatedNameForParameter(String name, int position)
-
usingParameterNameForParameter
void usingParameterNameForParameter(String name, int position)
-
usingTableAnnotatedNameForParameter
void usingTableAnnotatedNameForParameter(String name, int position)
-
usingTableParameterNameForParameter
void usingTableParameterNameForParameter(String name, int position)
-
usingNaturalOrderForParameter
void usingNaturalOrderForParameter(int position)
-
foundParameter
void foundParameter(String parameter, int position)
-
usingStepsContextParameter
void usingStepsContextParameter(String parameter)
-
-