Exemplo n.º 1
0
        static void Main(string[] args)
        {
            CommandLineApp.RunApplication(args);
#if DEBUG
            ReadKey();
#endif
        }
Exemplo n.º 2
0
        public void WhenICheckout()
        {
            var cartFile           = CreateCartFile();
            var productCatalogFile = CreateProductCatalogFile();
            var results            = CommandLineApp.Run(cartFile, productCatalogFile);

            base.CommandLineResults = results;
        }
Exemplo n.º 3
0
 public static int Main(string[] args)
 {
     return(CommandLineApp.Run(args));
 }