尝试使用intellij IDE V2019.2执行流测试时测试失败并显示以下错误 命令行太长。缩短命令行
然后尝试在缩短的命令行中更改其他选项并重新测试。
然后它显示java.lang.IllegalArgumentException:在类路径上没有包含com.kba.flows包的CorDapps。确保程序包名称正确,并且将CorDapp添加为gradle依赖项。
答案 0 :(得分:1)
当类路径中不存在CorDapps时,将引发“ IllegalArgumentException”错误。参见下文-
when (jars.size) {
0 -> throw IllegalArgumentException("There are no CorDapps containing the package $scanPackage on the classpath. Make sure " +
"the package name is correct and that the CorDapp is added as a gradle dependency.")
请检查类路径中是否存在CorDapp jar。