Exemplo n.º 1
0
        public void FixtureInit()
        {
            const string testFileName = @"DataFiles\Chevron June FG 462988.xlsx";
            var          projectPath  = Path.GetDirectoryName(Assembly.GetExecutingAssembly().CodeBase)
                                        .Replace("file:\\", "")
                                        .Replace("\\bin\\Debug", "");

            _extractor            = new OrderLineExtractor();
            _extractor.SourcePath = Path.Combine(projectPath, testFileName);
            _dtos = _extractor.Extract();
        }