public void DeletePresenceIdTest()
        {
            // TODO: add unit test for the method 'DeletePresenceId'
            string presenceId = null; // TODO: replace null with proper value

            instance.DeletePresenceId(presenceId);
        }
Пример #2
0
        public void DeletePresenceIdTest()
        {
            // TODO: add unit test for the method 'DeletePresenceId'
            string presenceId = null; // TODO: replace null with proper value
            var    response   = instance.DeletePresenceId(presenceId);

            Assert.IsInstanceOf <OrganizationPresence> (response, "response is OrganizationPresence");
        }