Given the following pseudo code, identify tests that should be executed to ensure the function returns correct values in all situations
function taxBreak($income, $numberOfAllowances){
// incomes under $30k should get a $5,000 flat break, nothing else applies
// incomes between $30k and $80k get $5k for each allowance
// allowances max out at 3
// allowances max out at $5k for incomes above $80k
}
php7 coding