Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Eliminate unused Types #1610

Merged
merged 2 commits into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ namespace NUnit.Engine.Communication.Transports
/// The ITestAgentTransport interface is implemented by a
/// class providing communication for a TestAgent.
/// </summary>
public interface ITestAgentTransport : ITransport
public interface ITestAgentTransport
{
TestAgent Agent { get; }
ITestEngineRunner CreateRunner(TestPackage package);
bool Start();
void Stop();
}
}

This file was deleted.

232 changes: 0 additions & 232 deletions src/NUnitEngine/nunit.engine.core/Compatibility/FrameworkName.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
using NUnit.Engine.Internal.FileSystemAccess;
using NUnit.Engine.Internal.FileSystemAccess.Default;
using System.Linq;
#if NET462
using NUnit.Engine.Internal.Backports;
#endif

namespace NUnit.Engine.Extensibility
{
Expand Down
34 changes: 0 additions & 34 deletions src/NUnitEngine/nunit.engine.core/Internal/Backports/Path.cs

This file was deleted.

Loading
Loading