public static void main(String[] args) {
TestRunner runner = new TestRunner();
try {
for (int i=0; i<50000; i++) {
Test test = new JUnit4TestAdapter(MdcInjectionFilterTest.class);
runner.doRun(test);
System.out.println("i = " + i + " " + new Date());
}
System.out.println("done");
} catch (Exception e) {