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

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

            DA.GetData(0, ref text);

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

            reportPart = reportObject.Create();

            DA.SetData(0, reportPart);
        }