diff --git a/CoinGecko.Net.UnitTests/JsonTests.cs b/CoinGecko.Net.UnitTests/JsonTests.cs deleted file mode 100644 index 67d0b2a..0000000 --- a/CoinGecko.Net.UnitTests/JsonTests.cs +++ /dev/null @@ -1,39 +0,0 @@ -using NUnit.Framework; -using System.Collections.Generic; -using System.Threading.Tasks; -using CryptoExchange.Net.Interfaces; -using CoinGecko.Net.Clients; -using CoinGecko.Net.Objects; -using Bybit.Net.UnitTests; - -namespace CoinGecko.Net.UnitTests -{ - [TestFixture] - public class JsonTests - { - private JsonToObjectComparer _comparer = new JsonToObjectComparer((json) => TestHelpers.CreateResponseClient(json, x => - { - x.ApiCredentials = new CoinGeckoApiCredentials("123"); - x.ApiOptions.OutputOriginalData = true; - }, - System.Net.HttpStatusCode.OK)); - - [Test] - public async Task ValidateCalls() - { - await _comparer.ProcessSubject("", c => c.Api, - useNestedJsonPropertyForCompare: new Dictionary - { - { "GetGlobalDataAsync", "data" }, - { "GetGlobalDefiDataAsync", "data" }, - }, - ignoreProperties: new Dictionary> - { - { "SearchAsync", new List { "icos" } }, - { "GetTrendingSearchesAsync", new List { "exchanges" } } - } - ); - } - - } -}