Testing-JUnit and TestNG
Testing with JUnit or TestNG
Minor configuration in eclipse
To be able to test your business objects layer in JUnit test cases, you should set the following parameters in your test case/test suite launch configuration :
First in the "Arguments" tab, set your working directory to the build product of your project. For example, for a framework project the working directory should be :
Unknown macro: noformat. Click on this message for details.
For an application it should be (using the handy wolipsdirloc variable)
Unknown macro: noformat. Click on this message for details.
Then, in the classpath tab, select the "User Entries" entry and use the "Advanced..." button and select the "Add Folders" button.
Select the "Java" folder of your build product.
Use the "Up/Down" buttons to move this folder at the first position of your classpath.
Various approaches to initializing your application for testing
For unit type tests, initialization isn't usually a problem, as unit testing only tests a small "unit" isolated and not interacting with all the other "units" which make up your application. But there are other tests which may require many units of your application working cooperatively, and in order to work properly, all these units must be initialized properly.
Create a method which runs once before any tests
Your application should be initialzed just once before the tests. There are annotations etc. which allow one to pick a method which will be run prior to any tests. For a TestNG example (similar to Junit 4):
package example.com.test;
import er.extensions.appserver.ERXApplication;
import java.util.Properties;
import org.testng.annotations.BeforeTest;
import com.webobjects.appserver.WOApplication;
import com.webobjects.foundation.NSBundle;
public class WOInit {
static NSBundle MYBUNDLE = NSBundle.mainBundle();
@BeforeTest // init once
public void initWO() {
System.out.println("****InitWO starting...mainbundle is " + NSBundle.mainBundle().bundlePath());
// somehow 'new' seems to init the static structures best
example.com.app.Application myApp = new example.com.app.Application( ) ;
//ERXApplication.primeApplication(NSBundle.mainBundle().bundlePath(), null, "example.com.app.Application");
//er.extensions.ERXExtensions.initApp(example.com.app.Application.class, new String[0]) ;
System.out.println("****InitWO lists mainbundle:");
MYBUNDLE.properties().list(System.out);
Properties props = System.getProperties();
System.out.println(props.toString());
System.out.println("****InitWO ...Finished... ");
}
}
There are various ways (some commented out) to initialize your application in the above example.
- example.com.app.Application myApp = new example.com.app.Application( ) ;
- ERXApplication.primeApplication(NSBundle.mainBundle().bundlePath(), null, "example.com.app.Application"); //(Wonder) or
- WOApplication.primeApplication(NSBundle.mainBundle().bundlePath(), null, "example.com.app.Application"); //(No Wonder)
- er.extensions.ERXExtensions.initApp(example.com.app.Application.class, new String0) ;
One of them may work best in your situation. It may be important for your application to find its main bundle properly, and all the goodies bound up in that main bundle.