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

            string expected = accountId;
            string actual;
            actual = target.GetAccountId(authenticationId);
            Assert.AreEqual(expected, actual);
        }