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); }
public void BEncodeTest() { CCrypto target = new CCrypto(); string cIn = string.Empty; byte[] expected = null; byte[] actual; actual = target.BEncode(cIn); Assert.AreEqual(expected, actual); }
public void BDecodeTest() { CCrypto target = new CCrypto(); byte[] sIn = null; string expected = string.Empty; string actual; actual = target.BDecode(sIn); Assert.AreEqual(expected, actual); }
public void CCryptoConstructorTest() { CCrypto target = new CCrypto(); Assert.Inconclusive("TODO: Implement code to verify target"); }