- Timestamp:
- 03/11/10 08:19:11 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/java/org/jcoderz/commons/LogFormatterOutputTest.java
r1011 r1610 36 36 import java.util.logging.Logger; 37 37 import junit.framework.TestCase; 38 39 import org.jcoderz.commons.test.TssLogMessage; 38 40 import org.jcoderz.commons.types.Date; 39 41 import org.xml.sax.SAXException; … … 60 62 { 61 63 TstLogMessage.TestMessage.log("foo", Date.now().toUtilDate()); 64 } 65 66 /** 67 * Produces a log message from an exception w/ two parameters. 68 */ 69 public void testLogEventWithImpliedParams () 70 { 71 TssLogMessage.ImpliedParametersLog.log(new RuntimeException("Foo!")); 62 72 } 63 73
