예제 #1
0
    public void PriceShouldBeApplied()
    {
        var pair     = "BTC/USD";
        var newPrice = 10.0f;

        PriceService.ApplyPairPrice(pair, newPrice);

        PriceService.GetPriceFor(pair).Should().Be(newPrice);
    }