* This method performs all actions mentioned in class description.
*/
public void run() throws Exception {
ActivationID aid = new FakeActivationID(logger);
Exporter exporter = new FakeExporter(logger);
ActivationExporter activationExporter =
new ActivationExporter(aid, exporter);
Remote fup = new MethodSetProxy(logger);
Remote result = activationExporter.export(fup);
assertion(result instanceof Proxy);
boolean result2 = activationExporter.unexport(false);
assertion(result2 == true);
activationExporter =
new ActivationExporter(aid, exporter);
result = activationExporter.export(fup);
assertion(result instanceof Proxy);
result2 = activationExporter.unexport(true);
assertion(result2 == true);
}