|
Page Edited :
CAMEL :
How do I reuse the ContextTestSupport class in my unit tests
How do I reuse the ContextTestSupport class in my unit tests has been edited by James Strachan (Dec 03, 2008). Content:How do I reuse the ContextTestSupport class in my unit testsYou might want to look at the various Testing options, in particular Camel Test and Spring Testing to see if those are better, more powerful options. We see ContextTestSupport as an older, less powerful option. There are a number of useful unit test cases and support classes you can reuse in your own unit test cases. If you use maven2 then here you go: ContextTestSupport : <dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
<version>${camel-version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
|
Unsubscribe or edit your notifications preferences
