@Test
public void testAnalyze_upperright() throws Exception {
System.out.println("analyze");
PasswordAnalysis pass = new PasswordAnalysis("zse4");
KeySequenceFinder instance = new KeySequenceFinder(new EnglishKeyBoard());
instance.analyze(pass);
int count = pass.getPossiblePatternCount();
assertEquals(3, count);
}
@Test
public void testAnalyze_lowerleft() throws Exception {