Beispiel #1
0
        public void PostOrganizationsTest()
        {
            // TODO: add unit test for the method 'PostOrganizations'
            ExternalOrganization body = null; // TODO: replace null with proper value
            var response = instance.PostOrganizations(body);

            Assert.IsInstanceOf <ExternalOrganization> (response, "response is ExternalOrganization");
        }
Beispiel #2
0
        public void PutOrganizationsExternalorganizationIdTest()
        {
            // TODO: add unit test for the method 'PutOrganizationsExternalorganizationId'
            string externalOrganizationId = null; // TODO: replace null with proper value
            ExternalOrganization body     = null; // TODO: replace null with proper value
            var response = instance.PutOrganizationsExternalorganizationId(externalOrganizationId, body);

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