diff --git a/src/test/java/com/ugsbo/Crypto/Crypt.java b/src/test/java/com/ugsbo/Crypto/Crypt.java new file mode 100644 index 0000000..7a480d5 --- /dev/null +++ b/src/test/java/com/ugsbo/Crypto/Crypt.java @@ -0,0 +1,27 @@ +/** + * + */ +package com.ugsbo.Crypto; + +import static org.junit.Assert.*; +import org.junit.Before; +import org.junit.Test; + +/** + * @author christian + * + */ +public class Crypt { + + /** + * @throws java.lang.Exception + */ + @Before + public void setUp() throws Exception {} + + @Test + public void test() { + fail("Not yet implemented"); + } + +} diff --git a/src/test/java/com/ugsbo/Crypto/DeCrypt.java b/src/test/java/com/ugsbo/Crypto/DeCrypt.java new file mode 100644 index 0000000..d55c094 --- /dev/null +++ b/src/test/java/com/ugsbo/Crypto/DeCrypt.java @@ -0,0 +1,17 @@ +package com.ugsbo.Crypto; + +import static org.junit.Assert.*; +import org.junit.Before; +import org.junit.Test; + +public class DeCrypt { + + @Before + public void setUp() throws Exception {} + + @Test + public void test() { + fail("Not yet implemented"); + } + +}