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