public void GetUserFromElementTest()
 {
     using (var docPreserver = new XDocumentPreserver(ProviderHelper.TEST_XML_PATH))
     {
         XmlMembershipProvider_Accessor target = new XmlMembershipProvider_Accessor(); // TODO: Initialize to an appropriate value
         XElement userElement = null; // TODO: Initialize to an appropriate value
         MembershipUser expected = null; // TODO: Initialize to an appropriate value
         MembershipUser actual;
         actual = target.GetUserFromElement(userElement);
         Assert.AreEqual(expected, actual);
         Assert.Inconclusive("Verify the correctness of this test method.");
     }
 }
 public void EncodePasswordTest()
 {
     using (var docPreserver = new XDocumentPreserver(ProviderHelper.TEST_XML_PATH))
     {
         XmlMembershipProvider_Accessor target = new XmlMembershipProvider_Accessor(); // TODO: Initialize to an appropriate value
         string password = string.Empty; // TODO: Initialize to an appropriate value
         string expected = string.Empty; // TODO: Initialize to an appropriate value
         string actual;
         actual = target.EncodePassword(password);
         Assert.AreEqual(expected, actual);
         Assert.Inconclusive("Verify the correctness of this test method.");
     }
 }