Fixed typos
This commit is contained in:
@@ -154,7 +154,7 @@ public class TestVigenere{
|
|||||||
assertEquals("Vigenere failed mixed case, whitespace, symbol decoding with mangled keyword.", correctOutput, output);
|
assertEquals("Vigenere failed mixed case, whitespace, symbol decoding with mangled keyword.", correctOutput, output);
|
||||||
}
|
}
|
||||||
@Test
|
@Test
|
||||||
public void testNoSymbolDecodes() throws Exception{
|
public void testNoSymbolDecode() throws Exception{
|
||||||
Vigenere cipher = new Vigenere(true, true, false);
|
Vigenere cipher = new Vigenere(true, true, false);
|
||||||
|
|
||||||
//Test lowercase decoding
|
//Test lowercase decoding
|
||||||
@@ -344,7 +344,7 @@ public class TestVigenere{
|
|||||||
assertEquals("Vigenere failed mixed case, whitespace, symbol encoding with mangled keyword.", correctOutput, output);
|
assertEquals("Vigenere failed mixed case, whitespace, symbol encoding with mangled keyword.", correctOutput, output);
|
||||||
}
|
}
|
||||||
@Test
|
@Test
|
||||||
public void testNoCaptialEncode() throws Exception{
|
public void testNoCapitalEncode() throws Exception{
|
||||||
Vigenere cipher = new Vigenere(false, true, true);
|
Vigenere cipher = new Vigenere(false, true, true);
|
||||||
|
|
||||||
//Test lowercase encoding
|
//Test lowercase encoding
|
||||||
|
|||||||
Reference in New Issue
Block a user