コード例 #1
0
        public async Task ShouldGetMembershipsByUserId()
        {
            var memberships = await _wxTeamsApi.GetMembershipsAssociatedWithAsync(StaticTestingValues.BotId);

            memberships.Should().NotBeNull();
            memberships.Items.Any(x => x.RoomId == StaticTestingValues.JRoom).Should().BeTrue();
        }