Пример #1
0
        public void SshfTest()
        {
            bool expected = true;

            RasLcpOptions target = new RasLcpOptions(Internal.NativeMethods.RASLCPO.Sshf);
            bool          actual = target.Sshf;

            Assert.AreEqual(expected, actual);
        }
Пример #2
0
        public void AcfcTest()
        {
            bool expected = true;

            RasLcpOptions target = new RasLcpOptions(Internal.NativeMethods.RASLCPO.Acfc);
            bool actual = target.Acfc;

            Assert.AreEqual(expected, actual);
        }
Пример #3
0
        public void TripleDesTest()
        {
            bool expected = true;

            RasLcpOptions target = new RasLcpOptions(Internal.NativeMethods.RASLCPO.TripleDes);
            bool          actual = target.TripleDes;

            Assert.AreEqual(expected, actual);
        }
Пример #4
0
        public void Des56Test()
        {
            var expected = true;

            var target = new RasLcpOptions(Internal.NativeMethods.RASLCPO.Des56);
            var actual = target.Des56;

            Assert.AreEqual(expected, actual);
        }