标签: unit-testing junit apache-camel tdd
我想知道maven中的命令行来运行Apache Camel的单元测试。 有什么帮助吗? 方面
答案 0 :(得分:1)
您可以使用普通的maven测试命令,例如mvn clean test
如果你必须运行特定的单元测试,那么你必须使用
mvn -Dtest = TestClass # testMethod 测试
其中TestClass是junit测试类,testMethod是实际运行的方法。
有关骆驼测试的更多信息,请访问此处..
http://camel.apache.org/spring-testing.html