示例#1
0
        public void CheckReportCreation(string text, string expected)
        {
            Emphasis testObject = new Emphasis(text);
            string   actual     = testObject.Create();

            Assert.Equal(expected, actual);
        }
        protected override void SolveInstance(IGH_DataAccess DA)
        {
            string text = string.Empty;

            DA.GetData(0, ref text);

            string   reportPart;
            Emphasis reportObject = new Emphasis(text);

            reportPart = reportObject.Create();

            DA.SetData(0, reportPart);
        }