@Test
public void testAnalyze_random() throws Exception {
System.out.println("analyze");
PasswordAnalysis pass = new PasswordAnalysis("&7U8(b^j(*(l:';");
KeySequenceFinder instance = new KeySequenceFinder(new EnglishKeyBoard());
instance.analyze(pass);
int count = pass.getPossiblePatternCount();
assertEquals(1, count);
}
@Test