public void getSatisfaction_shouldReturnHighWhenSalaryIsEqualOrOverAverage() {
//given
IEmployee employee = mock(IEmployee.class);
given(employee.getSalary()).willReturn(BigDecimal.valueOf(10000));
//when
final Answer satisfaction = instance.getSatisfaction(employee);
//then
assertThat(satisfaction).isEqualTo(Answer.FINE);
}