Opc.Ua.ServerTest.ServerTestClient.ReportBreakpoint C# (CSharp) Method

ReportBreakpoint() private method

Reports a breakpoint for a test.
private ReportBreakpoint ( ) : void
return void
        private void ReportBreakpoint()
        {
            if (m_ReportTestProgress != null)
            {
                ReportProgressEventArgs e = new ReportProgressEventArgs(
                    m_defaultEndpoint, 
                    m_testcase, 
                    m_testCount,
                    m_failedTestCount,
                    m_endpointCount,
                    m_totalEndpointCount,
                    m_iterationCount,
                    m_totalIterationCount, 
                    0,
                    0,
                    true);
 
                m_ReportTestProgress(this, e);
                
                if (e.Stop)
                {
                    m_stopped = e.Stop;
                }
            }
        }