Esempio n. 1
0
        public void WhenAGroupIsAddedWithTheDescription(string groupName, string groupDescription)
        {
            IGroup group = IdentityManagementService.CreateGroup(groupName, groupDescription, null);

            nameIdentifierPairs.Add(groupName, group.Id);
        }
Esempio n. 2
0
 public void WhenAGroupWithNoNameIsAdded()
 {
     Try(() => IdentityManagementService.CreateGroup(string.Empty, string.Empty, string.Empty));
 }
Esempio n. 3
0
        public void GivenAGroupIsAdded(string groupName)
        {
            IGroup group = IdentityManagementService.CreateGroup(groupName, string.Empty, string.Empty);

            nameIdentifierPairs.Add(groupName, group.Id);
        }