我試圖輸出jebehave報告給位置(d:/ ABC)大於由代碼位置之外,輸出jbehave報告
URL url = null;
try {
url = new File("D:/abc").toURI().toURL();
} catch (MalformedURLException e) {
e.printStackTrace();
}
.useStoryReporterBuilder(new StoryReporterBuilder()
.withCodeLocation(url)
.withDefaultFormats().withFormats(TXT,HTML));
然而jbehave /視圖文件夾在D:/驅動器中創建,而不是在D:/ abc文件夾中創建。可能是什麼問題
我試過了,但是再次在D:/ drive中創建了jbehave/view文件夾 –