Mule FunctionalTestCase是否需要运行org.junit.rules.TestRule类

时间:2013-01-31 21:35:46

标签: java junit junit4 mule junit-rule

我正在尝试在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

骡子需要这门课吗?我没有使用TestRule

的任何注释

1 个答案:

答案 0 :(得分:4)

来自Mule's parent POM

<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应该为你拉。