Beispiel #1
0
        public void CheckReportCreation(List <string> text, string expected)
        {
            UnorderedList testObject = new UnorderedList(text);
            string        actual     = testObject.Create();

            Assert.Equal(expected, actual);
        }
Beispiel #2
0
        protected override void SolveInstance(IGH_DataAccess DA)
        {
            List <string> text = new List <string>();

            DA.GetDataList(0, text);

            string        report;
            UnorderedList reportObject = new UnorderedList(text);

            report = reportObject.Create();

            DA.SetData(0, report);
        }