12 references to LastError
Microsoft.Build.Engine.UnitTests (12)
BackEnd\TaskHost_Tests.cs (12)
138Assert.True(_customLogger.LastError is MyCustomBuildErrorEventArgs); // "Expected Custom Error Event" 141customBuildError = _customLogger.LastError as MyCustomBuildErrorEventArgs; 206Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 207Assert.Equal(0, _customLogger.LastError.LineNumber); // "Expected line number to be 0" 231Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 289Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 290Assert.Equal(0, _customLogger.LastError.LineNumber); // "Expected line number to be 0" 347Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 348Assert.Contains("SubCategory", _customLogger.LastError.Message); // "Expected line number to be 0" 418Assert.True(_customLogger.LastError is ExtendedBuildErrorEventArgs); // "Expected custom build Event" 419Assert.Equal("ext err message", _customLogger.LastError.Message); 462Assert.Null(_customLogger.LastError); // "Expected no error Event"