public void CreateAuthenticationIdTest()
 {
     var target = new MockAuthenticationProvider();
     string accountId = "1";
     string expected = string.Empty;
     string actual;
     actual = target.CreateAuthenticationId(accountId);
     Assert.IsNotNull(actual);
 }
        public void LogoutTest()
        {
            var target = new MockAuthenticationProvider();
            string accountId = "1";
            string authenticationId = target.CreateAuthenticationId(accountId);
            ;

            bool expected = true;
            bool actual;
            actual = target.Logout(authenticationId);
            Assert.AreEqual(expected, actual);
        }
 public void MockAuthenticationProviderConstructorTest()
 {
     var target = new MockAuthenticationProvider();
 }