Exemple #1
0
        public void Exist_KeyContainerExist_True()
        {
            bool exist = Gost2001KeyContainer.Exist(Container);

            Assert.IsTrue(exist);
        }
Exemple #2
0
        public void Exist_KeyContainerAbsent_False()
        {
            bool exist = Gost2001KeyContainer.Exist(Guid.NewGuid().ToString());

            Assert.IsFalse(exist);
        }