public void CellsAutoFilterPostWorksheetMatchBlanksExample()
        {
            string name       = "Book1.xlsx";
            string sheetName  = "SHEET1";
            int?   fieldIndex = 0;
            string folder     = null;

            new Config().UpdateDataFile(null, "Book1.xlsx");
            var response = instance.CellsAutoFilterPostWorksheetMatchBlanks(name, sheetName, fieldIndex, folder);

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

            UpdateDataFile(TEMPFOLDER, BOOK1);
            var response = instance.CellsAutoFilterPostWorksheetMatchBlanks(name, sheetName, fieldIndex, folder);

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