Ejemplo n.º 1
0
        public void CellsOleObjectsDeleteWorksheetOleObjectTest()
        {
            // TODO uncomment below to test the method and replace null with proper value
            string name           = "Book1.xlsx";
            string sheetName      = "SHEET6";
            int?   oleObjectIndex = 0;
            string folder         = null;

            new Config().UpdateDataFile(folder, name);
            var response = instance.CellsOleObjectsDeleteWorksheetOleObject(name, sheetName, oleObjectIndex, folder);

            Console.WriteLine(response);
        }
Ejemplo n.º 2
0
        public void CellsOleObjectsDeleteWorksheetOleObjectTest()
        {
            // TODO uncomment below to test the method and replace null with proper value
            string name           = BOOK1;
            string sheetName      = SHEET6;
            int?   oleObjectIndex = 0;
            string folder         = TEMPFOLDER;

            UpdateDataFile(folder, name);
            var response = instance.CellsOleObjectsDeleteWorksheetOleObject(name, sheetName, oleObjectIndex, folder);

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