| 242 | | final LoggableImpl testObject |
| 243 | | = new LoggableImpl(null, TEST_LOG_MESSAGE_INFO, TEST_THREAD_ID, |
| 244 | | TEST_THREAD_NAME, TEST_INSTANCE_ID, TEST_NODE); |
| 245 | | final Exception testException = new Exception(); |
| 246 | | |
| 247 | | testObject.initCause(testException); |
| 248 | | |
| | 242 | final Exception testException |
| | 243 | = new RuntimeException("Runtime", new ArgumentMalformedException("foo", "val", "This is wrong!")); |
| | 244 | final LoggableImpl testObject |
| | 245 | = new LoggableImpl(null, TEST_LOG_MESSAGE_INFO, TEST_THREAD_ID, |
| | 246 | TEST_THREAD_NAME, TEST_INSTANCE_ID, TEST_NODE, testException); |
| | 247 | // testException.initCause(); |
| | 248 | // testObject.initCause(testException); |
| | 249 | System.out.println("TEST: " + testObject.toDetailedString()); |