Example #1
0
        public void TestCheckIfSamePasswordSuccess()
        {
            MFIServices mfiServices = new MFIServices(User.CurrentUser);

            bool result = mfiServices.CheckIfSamePassword("Password","Password");

            Assert.IsTrue(result);
        }
Example #2
0
        public void TestCheckIfSamePasswordFailure()
        {
            MFIServices mfiServices = new MFIServices(User.CurrentUser);

               mfiServices.CheckIfSamePassword("Password", "DifferentPassword");
        }