Exemple #1
0
 public void should_generate_a_number_that_is_greater_than_or_equal_to_the_min_amount(
     int minAmount, int maxAmount)
 {
     ARandom.CurrencyAmountBetween(minAmount, maxAmount)
     .Should().BeGreaterOrEqualTo(minAmount)
     .And.BeLessOrEqualTo(maxAmount);
 }