public void LogoutTest()
        {
            ICacheProvider cacheProvider = new HttpRuntimeCache();
            var target = new AuthenticationProvider(cacheProvider);

            bool expected = true;
            bool actual;
            actual = target.Logout(authenticationId);
            Assert.AreEqual(expected, actual);
            authenticationId = null;
        }