9. Commenter Test
在此测试中,我们将检查在自定义语言支持教程的Commenter部分中实现的评论者是否按预期工作。
9.1。
定义测试方法
public void testCommenter() {
myFixture.configureByText(SimpleFileType.INSTANCE, "<caret>website = http://en.wikipedia.org/");
CommentByLineCommentAction commentAction = new CommentByLineCommentAction();
commentAction.actionPerformedImpl(getProject(), myFixture.getEditor());
myFixture.checkResult("#website = http://en.wikipedia.org/");
commentAction.actionPerformedImpl(getProject(), myFixture.getEditor());
myFixture.checkResult("website = http://en.wikipedia.org/");
}
9.2。
运行测试
运行测试并确保它是绿色的。
Last modified: 8 May 2019