public void Should_DeleteFriendship()
        {
            DeleteFriendshipInput input = new DeleteFriendshipInput
            {
                UserName1 = "Hans",
                UserName2 = "Clubber"
            };

            _memberAppService.DeleteFriendship(input);
        }