AspNet.Identity.MongoDB.Test.UserStoreTests.CreateAndFindByEmail C# (CSharp) Метод

CreateAndFindByEmail() приватный Метод

private CreateAndFindByEmail ( ) : void
Результат void
		public void CreateAndFindByEmail() {
			this.um.Create(new IdentityUser {
				EmailAddress = "[email protected]",
				UserName = "Test"
			});

			IdentityUser user = this.um.FindByEmail("[email protected]");

			user.UserName.Should().Be("Test");
		}