Practice with Tester

Create tests for this program:

We want to determine which coins to pull out to make change. Assume we always want to use the largest coins that we can, so we prefer a quarter to a dime. We only use 4 coin types: quarter, dime, nickel, penny. The makeChange method takes in an amount of change to make, and returns the number of coins needed.

One test case is:

makeChange(36) -> 3 (25 + 10 + 1)

Create as many other test cases as you think you need.

Create the method and the test class.