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

Feature/v2 api #69

Merged
merged 18 commits into from
Apr 6, 2024
6 changes: 3 additions & 3 deletions CoinEx.Net.UnitTests/CoinExClientTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
using CryptoExchange.Net.Objects;
using CryptoExchange.Net.Sockets;
using CoinEx.Net.Clients;
using CoinEx.Net.Clients.SpotApi;
using CoinEx.Net.ExtensionMethods;
using CryptoExchange.Net.Objects.Sockets;
using NUnit.Framework.Legacy;
using CoinEx.Net.Clients.SpotApiV1;

namespace CoinEx.Net.UnitTests
{
Expand Down Expand Up @@ -95,8 +95,8 @@ public void SigningString_Should_GiveCorrectSignResult(string input, string outp
public void CheckRestInterfaces()
{
var assembly = Assembly.GetAssembly(typeof(CoinExRestClientSpotApi));
var ignore = new string[] { "ICoinExClientSpot" };
var clientInterfaces = assembly.GetTypes().Where(t => t.Name.StartsWith("ICoinExClient") && !ignore.Contains(t.Name));
var ignore = new string[] { "ICoinExRestClientSpot" };
var clientInterfaces = assembly.GetTypes().Where(t => t.Name.StartsWith("ICoinExRestClient") && !ignore.Contains(t.Name));

foreach (var clientInterface in clientInterfaces)
{
Expand Down
Loading
Loading