Started using stringbuilder for efficiency

This commit is contained in:
2021-07-26 00:30:37 -04:00
parent 300a3acd06
commit 5963acc92e
3 changed files with 42 additions and 32 deletions

View File

@@ -13,7 +13,7 @@ import org.junit.Test;
public class TestAtbash{
@Test
public void TestDecode(){
public void testDecode(){
Atbash cipher = new Atbash();
//Test 1
@@ -29,7 +29,7 @@ public class TestAtbash{
assertEquals("Atbash Decoding failed the second test", correctOutput, output);
}
@Test
public void TestEncode(){
public void testEncode(){
Atbash cipher = new Atbash();
//Test 1