public void testStress() throws Exception {
//this runs in 0.212 seconds, it isn't a problem with performance
DateFinder dateFinder = new DateFinder();
for (int i = 0; i < 100000; i++) {
MockPasswordResults pass = new MockPasswordResults("1776-06-04");
dateFinder.analyze(pass);
//assertEquals(1, pass.getFoundPatterns().size());
}
}
}