我正在尝试在Mule 3.3中运行一个简单的Functional test
。下面是我的示例代码:
import java.util.Map;
import org.junit.Test;
import org.mule.api.MuleMessage;
import org.mule.api.client.MuleClient;
import org.mule.tck.junit4.FunctionalTestCase;
import static org.junit.Assert.*;
public class SoapServiceTest extends FunctionalTestCase {
@Override
protected String getConfigResources() {
return "mule-config.xml,core-config.xml";
}
@Test
public void testSend() throws Exception
{
MuleClient client = muleContext.getClient();
String payload = "foo";
Map<String, Object> properties = null;
MuleMessage result = client.send("http://localhost:61005/service", payload, properties);
assertNotNull(result.getPayloadAsString());
}
}
但它抱怨
java.lang.NoClassDefFoundError: org/junit/rules/TestRule
。我在类路径中有junit4.8.1.jar
,但是没有TestRule
类,猜测是junit4.9
起。ule子需要这个课程吗?我没有使用
TestRule
的任何注释 最佳答案
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
</dependency>
所以是的,无论您是否直接依赖于它,Mule都依赖于JUnit 4.9。
添加时:
<dependency>
<groupId>org.mule.tests</groupId>
<artifactId>mule-tests-functional</artifactId>
<version>3.3.1</version>
<scope>test</scope>
</dependency>
到项目的POM时,应该为您引入JUnit 4.9。