public void BeforeTestBegin()
        {
            PropertiesReference.Properties.TestBeginTime = DateTime.Now;
            string parentPath = PropertiesReference.Properties.ParentPath;

            string resultPath = parentPath + @"\TC_" + TestContext.TestName;

            PropertiesReference.Properties.ResultPath = resultPath;
            ComponentHelper.Generic.CreateFolder(resultPath);
            TestReport.CreateHTML(TestContext);
        }