}
@Test
public void employeeWithAvarageStrategyShouldNotBeSatisfiedIfSalaryIsEqualAvarage() throws Exception {
//given
final IEmployee employee = new Employee(EMPLOYEE_NAME, BigDecimal.valueOf(3000), avarageStrategy);
//when
final Answer satisfied = employee.isSatisfied();
//then
assertThat(satisfied).isEqualTo(Answer.LOW);
}