public void Should_parse_args_to_get_folder_path_of_all_specs()
        {
            var parser = new ArgumentParser(_args);

            InfoSource infoSource = parser.Parse();

            Assert.That(infoSource.SpecFilesParent, Is.EqualTo(@"C:\eXpandGST\IntegrationTest"));
        }
示例#2
0
        public static void Main(string[] args)
        {
            InfoSource source = new ArgumentParser(args).Parse();
            Specification specification = new SpecificationReader(source.SpecFilesParent).Read();
//            specification.Output(HtmlRender);
        }