我一直想谷歌一段时间试图找到一个解决方案而没有真正的运气。我试图运行jBehave测试时得到这个 -
org.jbehave.scenario.errors.ScenarioNotFoundException: Path '$Path_to_jBehave_Directory'
could not be found by classloader sun.misc.Launcher$AppClassLoader@f4a24a ...
我的文本场景,Steps类和scenario类都在同一目录中($ Path_to_jBehave_Directory)。
这就是我在我的maven pom中使用的内容:
<dependency>
<groupId>org.jbehave</groupId>
<artifactId>jbehave-core</artifactId>
<version>2.5</version>
</dependency>
任何帮助都会得到极大的赞赏!
答案 0 :(得分:7)
Maven不会自动将.story文件复制到测试类路径,除非您告诉它:
<testResources>
<testResource>
<directory>src/test/java</directory>
<includes>
<include>**/*.story</include>
</includes>
</testResource>
</testResources>