autorest.azure-functions-cs.../test/AutoRest.TestServer.Tests/ITestServer.cs

16 строки
334 B
C#

using System.Net.Http;
using System.Threading.Tasks;
namespace AutoRest.TestServer.Tests
{
public interface ITestServer
{
HttpClient Client { get; }
string Host { get; }
Task<string[]> GetRequests();
Task<string[]> GetMatchedStubs();
Task ResetAsync();
void Dispose();
}
}