###########################################
# #
# WmUnit README.txt file #
# URL: http://wmunit.sf.net #
# #
###########################################
1. Overwiev
WmUnit is a unit testing framework for testing WebMethods Integration Server services.
WmUnit test is simply JUnit test with additional methods (Actualy WmTestCase class is inherited from TestCase).
It can be run as normal JUnit test from your favorite IDE or junit runner see junit.org for details.
2. Installation
Download binary distribution from http://sourceforge.net/projects/wmunit. Unzip it in
choosen directory. Copy webmethods files:
* client61.jar - from {WmPath}/common/lib
* client.jar, entbase.jar, entmisc.jar, server.jar, entssl.jar - from {WmPath}/IntegrationServer/lib
to lib/ directory.
And that's it.
When installing from source one needs same libraries.
3. Building from sources
When downloading from CVS/SVN simply run from cmd/console
-ANT
cd path/to/sources
ant
-Maven2
cd lib/
cp client61.jar to $USER_HOME/$M2_REPO/client61/client61/1.0/client61-1.0.jar
cp client.jar to $USER_HOME/$M2_REPO/client/client/1.0/client-1.0.jar
cp server.jar to $USER_HOME/$M2_REPO/server/server/1.0/server-1.0.jar
cp entbase.jar to $USER_HOME/$M2_REPO/entbase/entbase/1.0/entbase-1.0.jar
cp entssl.jar to $USER_HOME/$M2_REPO/entssl/entssl/1.0/entssl-1.0.jar
cp entmisc.jar to $USER_HOME/$M2_REPO/entmisc/entmisc/1.0/entmisc-1.0.jar
cd path/to/sources
mvn install
where $USER_HOME is your home directory:
*Windows - C:\Documents and Settings\yourName
*Linux/Unix - /home/yourName
and $M2_REPO is your local maven2 repository
*Windows - C:\Documents and Settings\yourName\.m2
*Linux/Unix - /home/yourName/.m2
4. Documentation
See doc/
5. License
WmUnit is licensed under Common Public License - v 1.0.
(See LICENSE.txt or http://www.eclipse.org/legal/cpl-v10.html)
6. Other information
It uses dom4j (dom4j.org) and junit (junit.org) libs.
Our hompage is wmunit.sf.net.