Ejemplo n.º 1
0
        public void PostGroupIdMembersTest()
        {
            // TODO: add unit test for the method 'PostGroupIdMembers'
            string             groupId = null; // TODO: replace null with proper value
            GroupMembersUpdate body    = null; // TODO: replace null with proper value

            instance.PostGroupIdMembers(groupId, body);
        }
Ejemplo n.º 2
0
        public void PostGroupIdMembersTest()
        {
            // TODO: add unit test for the method 'PostGroupIdMembers'
            string             groupId = null; // TODO: replace null with proper value
            GroupMembersUpdate body    = null; // TODO: replace null with proper value
            var response = instance.PostGroupIdMembers(groupId, body);

            Assert.IsInstanceOf <Empty> (response, "response is Empty");
        }
 public void Init()
 {
     instance = new GroupMembersUpdate();
 }