Fixed some minor deviations from the coding conventions in the ProgressTracker class
git-svn-id: file:///srv/devel/repo-conversion/nusu@119 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
1f1faac82a
commit
a3de5b041c
|
@ -40,13 +40,13 @@ namespace Nuclex.Support.Tracking {
|
||||||
|
|
||||||
/// <summary>Called when the tracked progress changes</summary>
|
/// <summary>Called when the tracked progress changes</summary>
|
||||||
/// <param name="sender">Progress tracker whose progress has changed</param>
|
/// <param name="sender">Progress tracker whose progress has changed</param>
|
||||||
/// <param name="e">Contains the new progress achieved</param>
|
/// <param name="arguments">Contains the new progress achieved</param>
|
||||||
void ProgressChanged(object sender, ProgressReportEventArgs e);
|
void ProgressChanged(object sender, ProgressReportEventArgs arguments);
|
||||||
|
|
||||||
/// <summary>Called when the progress tracker's idle state changes</summary>
|
/// <summary>Called when the progress tracker's idle state changes</summary>
|
||||||
/// <param name="sender">Progress tracker whose idle state has changed</param>
|
/// <param name="sender">Progress tracker whose idle state has changed</param>
|
||||||
/// <param name="e">Contains the new idle state of the tracker</param>
|
/// <param name="arguments">Contains the new idle state of the tracker</param>
|
||||||
void IdleStateChanged(object sender, IdleStateEventArgs e);
|
void IdleStateChanged(object sender, IdleStateEventArgs arguments);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -54,7 +54,7 @@ namespace Nuclex.Support.Tracking {
|
||||||
|
|
||||||
#region class ProgressUpdateEventArgsMatcher
|
#region class ProgressUpdateEventArgsMatcher
|
||||||
|
|
||||||
/// <summary>Compares two ProgressUpdateEventArgsInstances for NMock validation</summary>
|
/// <summary>Compares two ProgressUpdateEventArgs instances</summary>
|
||||||
private class ProgressReportEventArgsMatcher : Matcher {
|
private class ProgressReportEventArgsMatcher : Matcher {
|
||||||
|
|
||||||
/// <summary>Initializes a new ProgressUpdateEventArgsMatcher</summary>
|
/// <summary>Initializes a new ProgressUpdateEventArgsMatcher</summary>
|
||||||
|
@ -140,7 +140,7 @@ namespace Nuclex.Support.Tracking {
|
||||||
#region class EvilTransaction
|
#region class EvilTransaction
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Transaction that tries to emulate a thread given a progress report at
|
/// Transaction that tries to emulate a thread giving a progress report at
|
||||||
/// a very inconvenient time ;)
|
/// a very inconvenient time ;)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private class EvilTransaction : Transaction, IProgressReporter {
|
private class EvilTransaction : Transaction, IProgressReporter {
|
||||||
|
@ -175,14 +175,10 @@ namespace Nuclex.Support.Tracking {
|
||||||
|
|
||||||
// Step 1
|
// Step 1
|
||||||
{
|
{
|
||||||
Expect.Once.On(mockedSubscriber).
|
Expect.Once.On(mockedSubscriber).Method("IdleStateChanged").WithAnyArguments();
|
||||||
Method("IdleStateChanged").
|
|
||||||
WithAnyArguments();
|
|
||||||
|
|
||||||
// Since the progress is already at 0, these redundant reports are optional
|
// Since the progress is already at 0, these redundant reports are optional
|
||||||
Expect.Between(0, 2).On(mockedSubscriber).
|
Expect.Between(0, 2).On(mockedSubscriber).Method("ProgressChanged").With(
|
||||||
Method("ProgressChanged").
|
|
||||||
With(
|
|
||||||
new Matcher[] {
|
new Matcher[] {
|
||||||
new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)),
|
new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)),
|
||||||
new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.0f))
|
new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.0f))
|
||||||
|
@ -195,9 +191,7 @@ namespace Nuclex.Support.Tracking {
|
||||||
|
|
||||||
// Step 2
|
// Step 2
|
||||||
{
|
{
|
||||||
Expect.Once.On(mockedSubscriber).
|
Expect.Once.On(mockedSubscriber).Method("ProgressChanged").With(
|
||||||
Method("ProgressChanged").
|
|
||||||
With(
|
|
||||||
new Matcher[] {
|
new Matcher[] {
|
||||||
new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)),
|
new NMock2.Matchers.TypeMatcher(typeof(ProgressTracker)),
|
||||||
new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.25f))
|
new ProgressReportEventArgsMatcher(new ProgressReportEventArgs(0.25f))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user