// Create tester SlotsTest test = new SlotsTest(new SlotMachine( new int[] { 0, 1, 1, 1, 1, 2, 4 }, new int[] { 0, 0, 2, 10 }, new int[] { 0, 1, 2, 3, 4, 5, 6 } )); test.testCalculateWinnings(new int[] { 0, 1, 1 }, 1, 2); // TODO: add more test cases for testCalculateWinnings test.testSpin(new int[] { 1, 2, 3 }, new int[] { 1, 2, 3 }); // TODO: add more test cases for testSpin
You will add the following:
Explain your reasoning.