Beispiel #1
0
        public async Task When__UserStore_Find_By_Email__Expect__Null_Returned()
        {
            ApplicationUser user = await _userStore.FindByEmailAsync(" ").ConfigureAwait(false);

            Assert.That(user, Is.Null, "user not null");
        }