Skip to content

Commit

Permalink
Eliminate some Types entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
CharliePoole committed Jan 1, 2025
1 parent b1f08dc commit f317ba4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 248 deletions.
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
@@ -1,13 +1,17 @@
// Copyright (c) Charlie Poole, Rob Prouse and Contributors. MIT License - see LICENSE.txt

using System.Numerics;

namespace NUnit.Engine.Communication.Transports
{
/// <summary>
/// The ITestAgencyTransport interface is implemented by a
/// class providing communication for a TestAgency.
/// </summary>
public interface ITestAgencyTransport : ITransport
public interface ITestAgencyTransport
{
string ServerUrl { get; }
bool Start();
void Stop();
}
}

0 comments on commit f317ba4

Please sign in to comment.