12 references to LastError
Microsoft.Build.Engine.UnitTests (12)
BackEnd\TaskHost_Tests.cs (12)
133Assert.True(_customLogger.LastError is MyCustomBuildErrorEventArgs); // "Expected Custom Error Event" 136customBuildError = _customLogger.LastError as MyCustomBuildErrorEventArgs; 201Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 202Assert.Equal(0, _customLogger.LastError.LineNumber); // "Expected line number to be 0" 226Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 284Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 285Assert.Equal(0, _customLogger.LastError.LineNumber); // "Expected line number to be 0" 342Assert.True(_customLogger.LastError is BuildErrorEventArgs); // "Expected Error Event" 343Assert.Contains("SubCategory", _customLogger.LastError.Message); // "Expected line number to be 0" 413Assert.True(_customLogger.LastError is ExtendedBuildErrorEventArgs); // "Expected custom build Event" 414Assert.Equal("ext err message", _customLogger.LastError.Message); 457Assert.Null(_customLogger.LastError); // "Expected no error Event"