public void Then_daily_amount_should_equal_zero() { SUT.Snapshot.Daily.ShouldEqual(DailyAmount.FromDecimal(0m)); }
public void Then_daily_amount_should_be_set() { SUT.Snapshot.Daily.ShouldBeGreaterThan(DailyAmount.FromDecimal(0m)); }
public void Then_snapshot_should_be_changed() { SUT.Snapshot.Daily.ShouldEqual(DailyAmount.FromDecimal(3.33m)); }
public void Then_snapshot_should_be_updated() { var expected = (100 - 50) / 10; SUT.Snapshot.Daily.ShouldEqual(DailyAmount.FromDecimal(expected)); }
public void Then_snapshot_should_be_updated() { SUT.Snapshot.Daily.ShouldBeLessThan(DailyAmount.FromDecimal(10m)); }
public void Then_snapshot_should_be_updated() { SUT.Snapshot.Daily.ShouldEqual(DailyAmount.FromDecimal(0m)); }
public void Then_daily_amount_should_be_doubled() { SUT.Snapshot.Daily.ShouldEqual(DailyAmount.FromDecimal(20m)); }