public void PostRolesTest()
        {
            // TODO: add unit test for the method 'PostRoles'
            DomainOrganizationRole body = null; // TODO: replace null with proper value
            var response = instance.PostRoles(body);

            Assert.IsInstanceOf <DomainOrganizationRole> (response, "response is DomainOrganizationRole");
        }
        public void PutRolesRoleIdTest()
        {
            // TODO: add unit test for the method 'PutRolesRoleId'
            string roleId = null;               // TODO: replace null with proper value
            DomainOrganizationRole body = null; // TODO: replace null with proper value
            var response = instance.PutRolesRoleId(roleId, body);

            Assert.IsInstanceOf <DomainOrganizationRole> (response, "response is DomainOrganizationRole");
        }
        public void PostRolesLeftroleIdComparedefaultRightroleIdTest()
        {
            // TODO: add unit test for the method 'PostRolesLeftroleIdComparedefaultRightroleId'
            string leftRoleId           = null; // TODO: replace null with proper value
            string rightRoleId          = null; // TODO: replace null with proper value
            DomainOrganizationRole body = null; // TODO: replace null with proper value
            var response = instance.PostRolesLeftroleIdComparedefaultRightroleId(leftRoleId, rightRoleId, body);

            Assert.IsInstanceOf <DomainOrgRoleDifference> (response, "response is DomainOrgRoleDifference");
        }
Exemplo n.º 4
0
 public void Init()
 {
     instance = new DomainOrganizationRole();
 }