Skip to content

Commit

Permalink
Fixing comments from Manfred.
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje committed Apr 23, 2024
1 parent 00affb3 commit 300f2d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/NUnitFramework/framework/Internal/Execution/EventPump.cs
@@ -1,8 +1,8 @@
// Copyright (c) Charlie Poole, Rob Prouse and Contributors. MIT License - see LICENSE.txt

using NUnit.Framework.Interfaces;
using System;
using System.Threading;
using NUnit.Framework.Interfaces;

namespace NUnit.Framework.Internal.Execution
{
Expand Down Expand Up @@ -166,7 +166,7 @@ public void Stop()
/// </summary>
private void PumpThreadProc()
{
Log.Debug($"Starting EventPump {Name}");
Log.Debug($"Starting {Name}");

//ITestListener hostListeners = CoreExtensions.Host.Listeners;
try
Expand Down
4 changes: 2 additions & 2 deletions src/NUnitFramework/framework/Internal/Execution/EventQueue.cs
Expand Up @@ -29,7 +29,7 @@ public interface IEvent<in TListener>
/// or to queue them for forwarding on another thread or at
/// a later time.
/// </summary>
public abstract class Event : IEvent<ITestListener>, IDisposable
public abstract class Event : IEvent<ITestListener> , IDisposable

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Linux Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / Windows Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Check failure on line 32 in src/NUnitFramework/framework/Internal/Execution/EventQueue.cs

View workflow job for this annotation

GitHub Actions / MacOS Build

Closing generic bracket should not be followed by a space (https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1015.md)
{
/// <summary>
/// The Send method is implemented by derived classes to send the event to the specified listener.
Expand All @@ -40,7 +40,7 @@ public abstract class Event : IEvent<ITestListener>, IDisposable
/// <summary>
/// Not quite sure why this is needed, but the compiler complained.
/// </summary>
public void Dispose()
public virtual void Dispose()
{
}
}
Expand Down

0 comments on commit 300f2d7

Please sign in to comment.