Exemplo n.º 1
0
        public void CellsWorkbookDeleteDocumentUnProtectFromChangesTest()
        {
            string name   = "Book1.xlsx";
            string folder = null;

            new Config().UpdateDataFile(folder, name);
            var response = instance.CellsWorkbookDeleteDocumentUnprotectFromChanges(name, folder);

            Console.WriteLine(response);
        }
Exemplo n.º 2
0
        public void CellsWorkbookDeleteDocumentUnProtectFromChangesTest()
        {
            // TODO uncomment below to test the method and replace null with proper value
            string name   = BOOK1;
            string folder = TEMPFOLDER;

            UpdateDataFile(folder, name);
            var response = instance.CellsWorkbookDeleteDocumentUnprotectFromChanges(name, folder);

            Assert.IsInstanceOf <SaaSposeResponse>(response, "response is SaaSposeResponse");
            Assert.AreEqual(response.Code, 200);
        }