我为Test_flow创建了简单的Test Suit,但是当我尝试运行该流时,我收到了错误。
label.SetValue(Grid.RowProperty, 1);
label.SetValue(Grid.RowProperty, 2);
我执行的步骤:
我正在使用Anypoint studio 6.2 EE版本,运行时间为3.8.3 mule。
答案 0 :(得分:2)
您是否在测试套件中导入了XML配置文件?
示例:
<spring:beans>
<spring:import resource="classpath:property-test-config.xml"/>
<spring:import resource="classpath:mock-config-connectors.xml"/>
<spring:import resource="classpath:contactUpdates-config.xml"/>
</spring:beans>
答案 1 :(得分:0)
无法重现它。你有Maven项目还是普通的Mule项目?如果您可以添加一些关于项目的其他信息,那就太好了。
答案 2 :(得分:0)
从您的例外情况来看,它声明“未定义名为'ServiceNowREST__Default_Configuration'的bean”。请检查测试套件的类路径中是否存在定义了“ServiceNowREST__Default_Configuration”的mule配置文件。将文件添加到类路径将解决问题