Exemple #1
0
 public void DecodeTest()
 {
     CCrypto target = new CCrypto();
     string cIn = string.Empty;
     string expected = string.Empty;
     string actual;
     actual = target.Decode(cIn);
     Assert.AreEqual(expected, actual);
 }
Exemple #2
0
 public void BEncodeTest()
 {
     CCrypto target = new CCrypto();
     string cIn = string.Empty;
     byte[] expected = null;
     byte[] actual;
     actual = target.BEncode(cIn);
     Assert.AreEqual(expected, actual);
 }
Exemple #3
0
 public void BDecodeTest()
 {
     CCrypto target = new CCrypto();
     byte[] sIn = null;
     string expected = string.Empty;
     string actual;
     actual = target.BDecode(sIn);
     Assert.AreEqual(expected, actual);
 }
Exemple #4
0
 public void CCryptoConstructorTest()
 {
     CCrypto target = new CCrypto();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }