/*
* Mainly checking to see if the toString() method throws
* an exception (e.g. NullPointerException) with "bad" values.
*/
logger.log(Level.INFO, "Starting up " + this.getClass().toString());
NestableServerTransaction nullMgrIdParent =
new NestableServerTransaction(
(NestableTransactionManager)null,
0,
(NestableServerTransaction)null);
logger.log(Level.INFO, "nullMgrIdParent: " + nullMgrIdParent);
NestableServerTransaction nullIdParent =
new NestableServerTransaction(
noOpNestableTransactionManager,
0,
(NestableServerTransaction)null);
logger.log(Level.INFO, "nullIdParent: " + nullIdParent);
NestableServerTransaction nullMgrId =
new NestableServerTransaction(
(NestableTransactionManager)null,
0,
noOpNestableServerTransaction);
logger.log(Level.INFO, "nullMgrId: " + nullMgrId);
NestableServerTransaction nonNullMgrIdParent =
new NestableServerTransaction(
noOpNestableTransactionManager,
0,
noOpNestableServerTransaction);
logger.log(Level.INFO, "nonNullMgrIdParent: " + nonNullMgrIdParent);
}