OnPrice() public method

public OnPrice ( SpotPriceDto>.IDictionary priceCache, bool wasTraded ) : void
priceCache SpotPriceDto>.IDictionary
wasTraded bool
return void
        public void Doesnt_check_for_cross_when_monitoring_usd_base()
        {
            // arrange
            _target = new CurrencyPairTracker("USDZZZ");

            var prices = new Dictionary<string, PriceDto>
            {
                {"USDZZZ", new PriceDto() {Symbol = "USDZZZ", Bid = 1, Ask = 1}}
            };
            
            // act
            _target.OnPrice(prices, true);
            
            // assert
            
        }