public void Dispose() { if (featureContext != null) { featureContext.Dispose(); } if (scenarioContext != null) { scenarioContext.Dispose(); } }
public void Dispose() { if (featureContextManager != null) { featureContextManager.Dispose(); } if (scenarioContextManager != null) { scenarioContextManager.Dispose(); } if (stepContextManager != null) { stepContextManager.Dispose(); } }
public void Dispose() { featureContextManager?.Dispose(); scenarioContextManager?.Dispose(); stepContextManager?.Dispose(); }