public void GetTicker() { var connector = new BitstampConnector("https://www.bitstamp.net/api"); BitstampTicker ticker =connector.GetTicker(); Assert.That(ticker,Is.Not.Null); Assert.That(ticker.Fresh,Is.EqualTo(true)); }
public BitstampRepository(BitstampConnector bitstampConnection) { _connection = bitstampConnection; }