SendErrorMessage() public method

public SendErrorMessage ( string message ) : void
message string
return void
Ejemplo n.º 1
0
        public TestCase GetCachedTestCase(string id)
        {
            if (vsTestCaseMap.ContainsKey(id))
            {
                return(vsTestCaseMap[id]);
            }

            logger.SendErrorMessage("Test " + id + " not found in cache");
            return(null);
        }
Ejemplo n.º 2
0
        public TestCase GetCachedTestCase(string key)
        {
            if (_vsTestCaseMap.ContainsKey(key))
            {
                return(_vsTestCaseMap[key]);
            }

            _logger.SendErrorMessage("Test " + key + " not found in cache");
            return(null);
        }
Ejemplo n.º 3
0
        public void RunAssembly(IFrameworkHandle testLog)
        {
            try
            {
#if LAUNCHDEBUGGER
                System.Diagnostics.Debugger.Launch();
#endif
                if (TryLoadAssembly())
                {
                    using (NUnitEventListener listener = new NUnitEventListener(testLog, TestConverter))
                    {
                        try
                        {
                            runner.Run(listener, NUnitFilter, true, LoggingThreshold.Off);
                        }
                        catch (NullReferenceException)
                        {
                            // this happens during the run when CancelRun is called.
                            logger.SendDebugMessage("Nullref caught");
                        }
                        finally
                        {
                            runner.Unload();
                        }
                    }
                }
                else
                {
                    logger.NoNUnit2TestsFoundIn(assemblyName);
                }
            }
            catch (BadImageFormatException)
            {
                // we skip the native c++ binaries that we don't support.
                logger.AssemblyNotSupportedWarning(assemblyName);
            }
            catch (System.IO.FileNotFoundException ex)
            {
                // Probably from the GetExportedTypes in NUnit.core, attempting to find an assembly, not a problem if it is not NUnit here
                logger.DependentAssemblyNotFoundWarning(ex.FileName, assemblyName);
            }
            catch (UnsupportedFrameworkException ex)
            {
                //The UnsupportedFrameworkException is thrown by nunit, if the assembly references the NUnit v3 framework.
                logger.SendInformationalMessage("Attempt to load assembly with unsupported test framework in " + assemblyName);
            }
            catch (Exception ex)
            {
                logger.SendErrorMessage("Exception thrown executing tests in " + assemblyName, ex);
            }
        }