Affecto.IdentityManagement.Commanding.Tests.CommandHandlers.CreateGroupCommandHandlerTests.GroupCannotBeCreatedWithEmptyId C# (CSharp) Method

GroupCannotBeCreatedWithEmptyId() private method

private GroupCannotBeCreatedWithEmptyId ( ) : void
return void
        public void GroupCannotBeCreatedWithEmptyId()
        {
            sut.Execute(new CreateGroupCommand(Guid.Empty, "name", "description", null));
        }
CreateGroupCommandHandlerTests