using OpenTap; namespace OpenTapEditor { public class DebugHelper { private TestStepRun currentPaused; public void Pause(TestStepRun stepRun) { if (currentPaused == null) { currentPaused = stepRun; } } public void Resume() { if (currentPaused != null) { } } } }