Package com.intuit.karate.cli
Class IntellijHook
- java.lang.Object
-
- com.intuit.karate.cli.IntellijHook
-
- All Implemented Interfaces:
RuntimeHook
public class IntellijHook extends Object implements RuntimeHook
- Author:
- pthomas3
-
-
Constructor Summary
Constructors Constructor Description IntellijHook()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
afterFeature(FeatureRuntime fr)
void
afterScenario(ScenarioRuntime sr)
boolean
beforeFeature(FeatureRuntime fr)
boolean
beforeScenario(ScenarioRuntime sr)
void
beforeSuite(Suite suite)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.intuit.karate.RuntimeHook
afterBackground, afterHttpCall, afterStep, afterSuite, beforeBackground, beforeHttpCall, beforeStep
-
-
-
-
Method Detail
-
beforeSuite
public void beforeSuite(Suite suite)
- Specified by:
beforeSuite
in interfaceRuntimeHook
-
beforeScenario
public boolean beforeScenario(ScenarioRuntime sr)
- Specified by:
beforeScenario
in interfaceRuntimeHook
-
afterScenario
public void afterScenario(ScenarioRuntime sr)
- Specified by:
afterScenario
in interfaceRuntimeHook
-
beforeFeature
public boolean beforeFeature(FeatureRuntime fr)
- Specified by:
beforeFeature
in interfaceRuntimeHook
-
afterFeature
public void afterFeature(FeatureRuntime fr)
- Specified by:
afterFeature
in interfaceRuntimeHook
-
-