public void CellsChartsGetWorksheetChartTitleTest()
        {
            string name       = "Book1.xlsx";
            string sheetName  = "SHEET4";
            int?   chartIndex = 0;
            string folder     = null;

            new Config().UpdateDataFile(folder, name);
            var response = instance.CellsChartsGetWorksheetChartTitle(name, sheetName, chartIndex, folder);

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

            UpdateDataFile(folder, name);
            var response = instance.CellsChartsGetWorksheetChartTitle(name, sheetName, chartIndex, folder);

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