* This method performs all actions mentioned in class description.
*/
public void run() throws Exception {
// action step 1
ActivationID aid = new FakeActivationID(logger);
Exporter exporter = new FakeExporter(logger);
ActivationExporter activationExporter =
new ActivationExporter(aid, exporter);
// action step 2
// action step 3
aid = new FakeActivationID(logger);
try {
activationExporter = new ActivationExporter(aid, null);
throw new TestException("NullPointerException should be thrown");
} catch (NullPointerException ignore) {
// action step 4
}
// action step 5
exporter = new FakeExporter(logger);
try {
activationExporter = new ActivationExporter(null, exporter);
throw new TestException("NullPointerException should be thrown");
} catch (NullPointerException ignore) {