public async Task GroupCanBeRetrievedByGroupId()
        {
            var group = await _sut.GetAsync(TestGroupName);

            group.FullName.Should().Be(TestGroupName);
            group.FullPath.Should().Be(TestGroupName);
            group.Name.Should().Be(TestGroupName);
            group.Path.Should().Be(TestGroupName);
            group.Visibility.Should().Be(GroupsVisibility.Private);
            group.Description.Should().BeEmpty();
        }