public void CauseExceptionAndCopyToClipboard()

in 09-Tools/Common/1-Stack_trace_explorer.cs [20:33]


        public void CauseExceptionAndCopyToClipboard()
        {
            try
            {
                CallMethod1();
            }
            catch (Exception e)
            {
                var clipboard = new TextCopy.Clipboard();
                clipboard.SetText("An error occurred while running the test" + Environment.NewLine + Environment.NewLine + e);
                Console.WriteLine("Exception copied to clipboard");
                throw;
            }
        }