Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 571 Bytes

Kata.md

File metadata and controls

18 lines (13 loc) · 571 Bytes

Vending Machine

Requirement

  • Products Available:

    • Product A: USD 0.95
    • Product B: USD 1.26
    • Product C: USD 2.33
  • Business Rules:

    • Acceptable coins: 1, 2, 5, 10, 20, and 50 cents. and 1 dollars
    • Users can select products by inputting coins (e.g., 20 20 10 1 5) and choosing a product (e.g., A, B, C).
    • The machine should calculate and dispense change in the least number of coins possible (e.g., 50 50 20 5 2 1).

    test name convension

    Format: test[Condition][Action][Result] Example: testValidCoin_Added_BalanceIncreases