Пример #1
0
        static void Main(string[] args)
        {
            var b  = BlockBusterBasicFunctions.GetAllMovies();
            var oh = new OutputHelper();

            oh.WriteToCSV(b);
        }
Пример #2
0
        static void Main(string[] args)
        {
            var    b  = BlockBusterBasicFunctions.GetAllMovies();
            var    oh = new OutputHelper();
            string ans;
            bool   incorrect = true;

            Console.WriteLine("would you like the output as a CSV or written into the console? ( type: CSV or cons)");


            do
            {
                ans = Console.ReadLine();

                if (ans == "CSV")
                {
                    oh.WriteToCSV(b);
                    incorrect = false;
                }
                else if (ans == "cons")
                {
                    oh.WriteToConsole(b);
                    incorrect = false;
                }
                else
                {
                    Console.WriteLine("ERROR* Not a valid input please try again and type CSV or cons");
                }
            } while (incorrect);
        }
        public void getAllMoviesTest()
        {
            var result = BlockBusterBasicFunctions.GetAllMovies();

            Assert.True(result.Count == 50);
        }