private void CreateFailsWhenEmailAlreadyExistsTest(string email)
        {
            string result = _accountDbContext.CreateNewUser(email, "password");

            Assert.AreEqual("The email address provided already exists on the system.", result);
        }