Java 类com.intellij.openapi.ui.playback.StageInfo 实例源码

项目:intellij-ce-playground    文件:PopStage.java   
@Override
protected ActionCallback _execute(PlaybackContext context) {
  StageInfo stage = context.popStage();
  if (stage != null) {
    context.test("Test finished OK: " + stage.getName(), getLine());
    context.addPassed(stage);
  }
  return ActionCallback.DONE;
}
项目:intellij-ce-playground    文件:PushStage.java   
@Override
protected ActionCallback _execute(PlaybackContext context) {
  String name = getText().substring(PREFIX.length()).trim();
  context.test("Test started: " + name, getLine());
  context.pushStage(new StageInfo(name));
  return ActionCallback.DONE;
}
项目:tools-idea    文件:PopStage.java   
@Override
protected ActionCallback _execute(PlaybackContext context) {
  StageInfo stage = context.popStage();
  if (stage != null) {
    context.test("Test finished OK: " + stage.getName(), getLine());
    context.addPassed(stage);
  }
  return new ActionCallback.Done();
}
项目:tools-idea    文件:PushStage.java   
@Override
protected ActionCallback _execute(PlaybackContext context) {
  String name = getText().substring(PREFIX.length()).trim();
  context.test("Test started: " + name, getLine());
  context.pushStage(new StageInfo(name));
  return new ActionCallback.Done();
}
项目:consulo    文件:PopStage.java   
@Override
protected ActionCallback _execute(PlaybackContext context) {
  StageInfo stage = context.popStage();
  if (stage != null) {
    context.test("Test finished OK: " + stage.getName(), getLine());
    context.addPassed(stage);
  }
  return new ActionCallback.Done();
}
项目:consulo    文件:PushStage.java   
@Override
protected ActionCallback _execute(PlaybackContext context) {
  String name = getText().substring(PREFIX.length()).trim();
  context.test("Test started: " + name, getLine());
  context.pushStage(new StageInfo(name));
  return new ActionCallback.Done();
}