Playfair started
This commit is contained in:
27
src/test/java/mattrixwv/CipherStreamJava/TestPlayfair.java
Normal file
27
src/test/java/mattrixwv/CipherStreamJava/TestPlayfair.java
Normal 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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user