Added:
plugins/synapse/esper/trunk/java/mediators/src/test/java/org/sciflex/plugins/synapse/esper/mediators/xml/XMLMediatorPerformanceTest.java
Log:
Added XMLMediatorPerformanceTest.java
Added:
plugins/synapse/esper/trunk/java/mediators/src/test/java/org/sciflex/plugins/synapse/esper/mediators/xml/XMLMediatorPerformanceTest.java
==============================================================================
--- (empty file)
+++
plugins/synapse/esper/trunk/java/mediators/src/test/java/org/sciflex/plugins/synapse/esper/mediators/xml/XMLMediatorPerformanceTest.java
Wed Jan 14 00:17:49 2009
@@ -0,0 +1,22 @@
+package org.sciflex.plugins.synapse.esper.mediators.xml;
+
+import com.clarkware.junitperf.*;
+import junit.framework.Test;
+
+public class XMLMediatorPerformanceTest {
+
+ public static Test suite() {
+
+ long maxElapsedTime = 1000;
+
+ Test testCase = new XMLMediatorTest("testXMLMediator");
+ Test timedTest = new TimedTest(testCase, maxElapsedTime);
+
+ return timedTest;
+ }
+
+ public static void main(String[] args) {
+ junit.textui.TestRunner.run(suite());
+ }
+}
+