Accord.Tests.IO.ExcelReaderTest.ConstructorExcel10Test C# (CSharp) Method

ConstructorExcel10Test() private method

private ConstructorExcel10Test ( ) : void
return void
        public void ConstructorExcel10Test()
        {
            // If a 64-bit ACE is installed, this test requires a 64-bit process to run correctly.
            // You also need to configure the test runner to use x64 instead of x86:
            // https://msdn.microsoft.com/library/ee782531(VS.110).aspx
            string path = Path.Combine("Resources", "sample.xlsx");
            ExcelReader target = new ExcelReader(path);

            testWorksheets(target);

            testColumns(target, true);

            testTables(target);
        }