@@ -27,7 +27,6 @@ protected internal EventAssertions(IMonitor<T> monitor) : base(monitor.Subject)
27
27
/// <summary>
28
28
/// Asserts that an object has raised a particular event at least once.
29
29
/// </summary>
30
- /// <param name="eventSource">The object exposing the event.</param>
31
30
/// <param name="eventName">
32
31
/// The name of the event that should have been raised.
33
32
/// </param>
@@ -59,7 +58,6 @@ public IEventRecorder Raise(string eventName, string because = "", params object
59
58
/// <summary>
60
59
/// Asserts that an object has not raised a particular event.
61
60
/// </summary>
62
- /// <param name="eventSource">The object exposing the event.</param>
63
61
/// <param name="eventName">
64
62
/// The name of the event that should not be raised.
65
63
/// </param>
@@ -88,7 +86,6 @@ public void NotRaise(string eventName, string because = "", params object[] beca
88
86
/// <summary>
89
87
/// Asserts that an object has raised the <see cref="INotifyPropertyChanged.PropertyChanged"/> event for a particular property.
90
88
/// </summary>
91
- /// <param name="eventSource">The object exposing the event.</param>
92
89
/// <param name="propertyExpression">
93
90
/// A lambda expression referring to the property for which the property changed event should have been raised, or
94
91
/// <c>null</c> to refer to all properties.
@@ -124,7 +121,6 @@ public IEventRecorder RaisePropertyChangeFor(Expression<Func<T, object>> propert
124
121
/// <summary>
125
122
/// Asserts that an object has not raised the <see cref="INotifyPropertyChanged.PropertyChanged"/> event for a particular property.
126
123
/// </summary>
127
- /// <param name="eventSource">The object exposing the event.</param>
128
124
/// <param name="propertyExpression">
129
125
/// A lambda expression referring to the property for which the property changed event should have been raised.
130
126
/// </param>
0 commit comments