Playfair started

This commit is contained in:
2021-12-31 00:27:37 -05:00
parent 4b3d9b3261
commit 9d78216d62
2 changed files with 183 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
//CipherStreamJava/src/main/java/mattrixwv/CipherStreamJava/TestPlayfair.java
//Matthew Ellison
// Created: 07-30-21
//Modified: 07-30-21
//These are the tests for the Playfair class
package mattrixwv.CipherStreamJava;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
public class TestPlayfair{
@Test
public void testDecode(){
Playfair cipher = new Playfair();
//Test 1
}
@Test
public void testEncode(){
Playfair cipher = new Playfair();
//Test 1
}
}