Exemple #1
0
        private static void CreateJsonList()
        {
            PersonListCreator personListCreator = new PersonListCreator();
            string            jsonForExcel      = personListCreator.GeneratePersonListForExcelCreation(350, "mentormedia.com", new string[] { "Research and Development", "Sales", "Marketing" });

            Console.WriteLine(jsonForExcel);
        }
Exemple #2
0
        public void GeneratePersonListJson_CreatesJsonListCorrectly()
        {
            PersonListCreator personListCreator = new PersonListCreator();
            string            json = personListCreator.GeneratePersonListJson(5);

            Assert.NotEqual("", json);
        }