我正在使用Jbehave,而我在本地执行测试(maven / IDE),控制台输出看起来很好:
teamcity上的控制台输出如下:
Jbehave配置文件中的输出配置如下所示:
@Override
public Configuration configuration(){
return new MostUsefulConfiguration().useStoryLoader(
new LoadFromClasspath(this.getClass())).useStoryReporterBuilder(
new StoryReporterBuilder().withDefaultFormats().withFormats(
Format.TXT, Format.HTML, Format.ANSI_CONSOLE, Format.XML));
}
任何想法为什么团队城市的输出被打破"
答案 0 :(得分:0)
我对此没有任何问题
@Override
public Configuration configuration(){
return new MostUsefulConfiguration().useStoryLoader(
new LoadFromClasspath(this.getClass())).useStoryReporterBuilder(
new StoryReporterBuilder().withFormats(Format.HTML, Format.CONSOLE));
}
您将找到作为资源文件的Html控制台将打印到标准输出(构建登录TC)