Example #1
0
        public void getPokedex()
        {
            Stopwatch stopWatch = new Stopwatch();

            stopWatch.Start();

            PokedexDataContract pokedex = DataContractGenerator <PokedexDataContract> .getInstance(1);

            stopWatch.Stop();
            TimeSpan ts = stopWatch.Elapsed;

            string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}:{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds);

            Debug.WriteLine("RunTime: " + elapsedTime);

            int dateCompare = DateTime.Compare((DateTime)pokedex.Modified, new DateTime(2013, 11, 10, 0, 0, 0, 0));

            Assert.IsTrue(dateCompare < 0);
            dateCompare = DateTime.Compare((DateTime)pokedex.Created, new DateTime(2013, 11, 10, 0, 0, 0, 0));
            Assert.IsTrue(dateCompare < 0);
            Assert.IsTrue(pokedex.Name == "national");
            Assert.IsTrue(pokedex.PokedexResourceUri == "/api/v1/pokedex/1/");
            Assert.IsTrue(pokedex.PokemonResourceUriList.Count == 778);

            generateReport(pokedex, elapsedTime);
        }
Example #2
0
        public static void Main()
        {
            Stopwatch stopWatch = new Stopwatch();

            stopWatch.Start();

            PokedexDataContract pokedex = DataContractGenerator <PokedexDataContract> .getInstance(1);

            stopWatch.Stop();
            TimeSpan ts = stopWatch.Elapsed;

            string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}:{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds);

            Debug.WriteLine("RunTime: " + elapsedTime);

            int dateCompare = DateTime.Compare((DateTime)pokedex.Modified, new DateTime(2013, 11, 10, 0, 0, 0, 0));

            Assert.IsTrue(dateCompare < 0);
            dateCompare = DateTime.Compare((DateTime)pokedex.Created, new DateTime(2013, 11, 10, 0, 0, 0, 0));
            Assert.IsTrue(dateCompare < 0);
            Assert.IsTrue(pokedex.Name == "national");
            Assert.IsTrue(pokedex.PokedexResourceUri == "/api/v1/pokedex/1/");
            Assert.IsTrue(pokedex.PokemonResourceUriList.Count == 778);

            ExcelFileHandler excelFileHandler = new ExcelFileHandler("PokedexUnitTest.xlsx");

            try {
                excelFileHandler.SetCellValue(1, 1, "Created");
                excelFileHandler.SetCellValue(1, 2, "Modified");
                excelFileHandler.SetCellValue(1, 3, "Name");
                excelFileHandler.SetCellValue(1, 4, "Pokedex Resource Uri");
                excelFileHandler.SetCellValue(1, 5, "Pokemon Count");
                excelFileHandler.SetCellValue(1, 6, "Test Results");
                excelFileHandler.SetCellValue(1, 7, "Time Elapsed");

                excelFileHandler.SetCellValue(2, 1, ((DateTime)pokedex.Created).ToString("yyyy-MM-dd"));
                excelFileHandler.SetCellValue(2, 2, ((DateTime)pokedex.Modified).ToString("yyyy-MM-dd"));
                excelFileHandler.SetCellValue(2, 3, pokedex.Name);
                excelFileHandler.SetCellValue(2, 4, pokedex.PokedexResourceUri);
                excelFileHandler.SetCellValue(2, 5, pokedex.PokemonResourceUriList.Count.ToString());
                excelFileHandler.SetCellValue(2, 6, "OK");
                excelFileHandler.SetCellValue(2, 7, elapsedTime);

                excelFileHandler.SaveAs();
            }
            catch (Exception e)
            {
                Debug.WriteLine("Unable to create Excel Application for the following reason: " + e.StackTrace);
            }
            finally
            {
                excelFileHandler.Close();
            }
        }
Example #3
0
        public void getPokemonList()
        {
            Stopwatch stopWatch = new Stopwatch();

            stopWatch.Start();

            PokedexDataContract pokedex = DataContractGenerator <PokedexDataContract> .getInstance(1);

            List <PokemonDataContract> pokemonList = pokedex.httpGetPokemonList();

            stopWatch.Stop();
            TimeSpan ts = stopWatch.Elapsed;

            string elapsedTime = String.Format("{0:00}:{1:00}:{2:00}:{3:00}", ts.Hours, ts.Minutes, ts.Seconds, ts.Milliseconds);

            Debug.WriteLine("RunTime: " + elapsedTime);

            generateReport(pokemonList, elapsedTime);
        }
Example #4
0
        public void generateReport(PokedexDataContract pokedex, string elapsedTime)
        {
            ExcelFileHandler excelFileHandler = null;

            try
            {
                excelFileHandler = new ExcelFileHandler("PokedexUnitTestResults.xlsx");

                excelFileHandler.SetCellValue(1, 1, "Created");
                excelFileHandler.SetCellValue(1, 2, "Modified");
                excelFileHandler.SetCellValue(1, 3, "Name");
                excelFileHandler.SetCellValue(1, 4, "Pokedex Resource Uri");
                excelFileHandler.SetCellValue(1, 5, "Pokemon Count");
                excelFileHandler.SetCellValue(1, 6, "Test Results");
                excelFileHandler.SetCellValue(1, 7, "Time Elapsed");

                excelFileHandler.SetCellValue(2, 1, ((DateTime)pokedex.Created).ToString("yyyy-MM-dd"));
                excelFileHandler.SetCellValue(2, 2, ((DateTime)pokedex.Modified).ToString("yyyy-MM-dd"));
                excelFileHandler.SetCellValue(2, 3, pokedex.Name);
                excelFileHandler.SetCellValue(2, 4, pokedex.PokedexResourceUri);
                excelFileHandler.SetCellValue(2, 5, pokedex.PokemonResourceUriList.Count.ToString());
                excelFileHandler.SetCellValue(2, 6, "OK");
                excelFileHandler.SetCellValue(2, 7, elapsedTime);

                excelFileHandler.SaveAs();
            }
            catch (Exception e)
            {
                Debug.WriteLine("Unable to create the Excel File for the following reason: " + e.StackTrace);
            }
            finally
            {
                if (excelFileHandler != null)
                {
                    excelFileHandler.Close();
                }
            }
        }