| 7 | import java.util.List; |
| 8 | |
| 9 | public interface States { |
| 10 | |
| 11 | |
| 12 | public void clickOnInsertCoinButton(VendingMachine machine) throws Exception; |
| 13 | |
| 14 | public void insertCoin(VendingMachine machine, Coin coin) throws Exception; |
| 15 | |
| 16 | public void clickOnStartProductSelectionButton(VendingMachine machine) throws Exception; |
| 17 | |
| 18 | public int getChange(int returnChangeMoney) throws Exception; |
| 19 | |
| 20 | public void chooseProduct(VendingMachine machine, int codeNumber) throws Exception; |
| 21 | |
| 22 | public List<Coin> refundFullMoney(VendingMachine machine) throws Exception; |
| 23 | |
| 24 | |
| 25 | Item dispenseProduct(VendingMachine machine, int codeNumber) throws Exception; |
| 26 | } |
no outgoing calls
no test coverage detected