Beispiel #1
0
        public void CryptageToStringTest()
        {
            Cryptage target   = new Cryptage();
            string   expected = "Cryptage";
            string   actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "CryptageToStringTest");
        }
Beispiel #2
0
        public void CryptageConstructorTest()
        {
            Cryptage target = new Cryptage();

            Assert.IsNotNull(target, "CryptageConstructorTest");
        }