Example #1
0
 public void CanGetExactChangeRecursive_Sample_MatchExpectations(int[] d, int m, bool r)
 {
     ChangeForeignCurrencies.CanGetExactChange_Recursive(m, d).Should().Be(r);
 }
Example #2
0
 public void CanGetExactChange_Sample_MatchExpectations(int[] denominations, int targetMoney, bool result)
 {
     ChangeForeignCurrencies.CanGetExactChange(targetMoney, denominations).Should().Be(result);
 }