VMwareIntegration.Common.TestRunner.ReportStatus C# (CSharp) Méthode

ReportStatus() private méthode

private ReportStatus ( bool success, System.TimeSpan ts, string failureText ) : void
success bool
ts System.TimeSpan
failureText string
Résultat void
        private void ReportStatus(bool success, TimeSpan ts, string failureText)
        {
            try
             {
            string text = success ? "Success" : "Failure";

            text = text + " " + ts.ToString().Substring(0, 8);
            TestCompleted(success, text, failureText);
             }
             catch (Exception)
             {

             }
        }