Example #1
0
        public void CorrectData()
        {
            string         expected   = Environment.NewLine + "------" + Environment.NewLine;
            HorizontalLine testObject = new HorizontalLine();

            Assert.Equal(expected, testObject.Create());
        }
Example #2
0
        protected override void SolveInstance(IGH_DataAccess DA)
        {
            string         reportPart;
            HorizontalLine reportObject = new HorizontalLine();

            reportPart = reportObject.Create();

            DA.SetData(0, reportPart);
        }