Beispiel #1
0
        public void DeleteUserTemplate_InvalidObjectId_Failure()
        {
            var res = UserTemplate.DeleteUserTemplate(_connectionServer, "ObjectId");

            Assert.IsFalse(res.Success, "Static call to DeleteUserTemplate did not fail with: invalid objectId");
        }
        public void DeleteUserTemplate_NullConnectionServer_Failure()
        {
            var res = UserTemplate.DeleteUserTemplate(null, "bogus");

            Assert.IsFalse(res.Success, "Static call to DeleteUserTemplate did not fail with: null ConnectionServer");
        }