AspNet.Identity.MongoDB.Test.RoleStoreTests.CreateRoleCasing C# (CSharp) Method

CreateRoleCasing() private method

private CreateRoleCasing ( ) : void
return void
		public void CreateRoleCasing() {
			IdentityResult result = this.rm.Create(new IdentityRole {
				Name = "Another One"
			});

			IdentityRole role = this.rm.FindByName("another one");

			false.Should().Be(role == null);
		}