mirror of
https://github.com/JKorf/CryptoExchange.Net
synced 2026-04-12 16:13:12 +00:00
Updated WebSocket message routing improving performance for scenarios with multiple different subscriptions and topics Added AddCommaSeparated helper for Enum value arrays to ParameterCollection Improved EnumConverter performance and removed string allocation for happy path Fixed CreateParamString extension method for ArrayParametersSerialization.Json Fixed Shared GetOrderBookOptions and GetRecentTradeOptions base validations not being called
28 lines
1012 B
C#
28 lines
1012 B
C#
using CryptoExchange.Net.Clients;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using System;
|
|
using System.Net.Http;
|
|
|
|
namespace CryptoExchange.Net.UnitTests.Implementations
|
|
{
|
|
internal class TestRestClient : BaseRestClient<TestEnvironment, TestCredentials>
|
|
{
|
|
public TestRestApiClient ApiClient1 { get; set; }
|
|
public TestRestApiClient ApiClient2 { get; set; }
|
|
|
|
public TestRestClient(Action<TestRestOptions>? optionsDelegate = null)
|
|
: this(null, null, Options.Create(ApplyOptionsDelegate(optionsDelegate)))
|
|
{
|
|
}
|
|
|
|
public TestRestClient(HttpClient? httpClient, ILoggerFactory? loggerFactory, IOptions<TestRestOptions> options) : base(loggerFactory, "Test")
|
|
{
|
|
Initialize(options.Value);
|
|
|
|
ApiClient1 = AddApiClient(new TestRestApiClient(_logger, httpClient, options.Value));
|
|
ApiClient2 = AddApiClient(new TestRestApiClient(_logger, httpClient, options.Value));
|
|
}
|
|
}
|
|
}
|