1 type derived from LoggerThrowException
Microsoft.Build.Engine.UnitTests (1)
BackEnd\LoggingService_Tests.cs (1)
1179public class BaseFLThrowException : LoggerThrowException, IForwardingLogger
6 instantiations of LoggerThrowException
Microsoft.Build.Engine.UnitTests (6)
BackEnd\LoggingService_Tests.cs (6)
170LoggerThrowException logger = new LoggerThrowException(true, false, new LoggerException("Hello")); 173logger = new LoggerThrowException(true, false, new Exception("boo")); 176logger = new LoggerThrowException(true, false, new StackOverflowException()); 232LoggerThrowException exceptionLogger = new LoggerThrowException(false, true, new LoggerException()); 245LoggerThrowException exceptionLogger = new LoggerThrowException(false, true, new Exception()); 258LoggerThrowException exceptionLogger = new LoggerThrowException(false, true, new StackOverflowException());
4 references to LoggerThrowException
Microsoft.Build.Engine.UnitTests (4)
BackEnd\LoggingService_Tests.cs (4)
170LoggerThrowException logger = new LoggerThrowException(true, false, new LoggerException("Hello")); 232LoggerThrowException exceptionLogger = new LoggerThrowException(false, true, new LoggerException()); 245LoggerThrowException exceptionLogger = new LoggerThrowException(false, true, new Exception()); 258LoggerThrowException exceptionLogger = new LoggerThrowException(false, true, new StackOverflowException());