@Test
public void logToStandardOutContainsLinkToLine() {
final String thisMethodsName = "logToStandardOutContainsLinkToLine";
final LogRecord record = LogTestUtil.createInfoRecord(
LogTestUtil.SIMPLE_LOG_MSG, getClass(), thisMethodsName);
new ConsoleHandler().publish(record);
// Assumes that this class and the file it lives in have the same name
final String fileName = getClass().getSimpleName();
final String linkRegex = "\\(" + fileName + "\\.java:\\d+\\) ";
final String logMsg = outLog.getLog();
final Pattern p = Pattern.compile(linkRegex);