1 /** 2 * LOGBack: the reliable, fast and flexible logging library for Java. 3 * 4 * Copyright (C) 1999-2006, QOS.ch 5 * 6 * This library is free software, you can redistribute it and/or 7 * modify it under the terms of the GNU Lesser General Public License as 8 * published by the Free Software Foundation. 9 */ 10 package ch.qos.logback.classic; 11 12 public class TestConstants { 13 14 final static public String ISO_REGEX = "\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2},\\d{3}"; 15 final static public String NAKED_MAIN_REGEX = "[mM]ain(\\sThread)?"; 16 final static public String MAIN_REGEX = "\\["+NAKED_MAIN_REGEX+"\\]"; 17 final static public String JORAN_ONPUT_PREFIX = "src/test/input/joran"; 18 }