public void setUp() throws Exception {
employeeWithAvarageStrategyAndHighSalary = new Employee(EMPLOYEE1_NAME, BigDecimal.valueOf(10000),
new CountryAverageSalaryBasedSatisfactionStrategy());
employeeWithAvarageStrategyAndLowSalary = new Employee(EMPLOYEE2_NAME, BigDecimal.valueOf(10),
new CountryAverageSalaryBasedSatisfactionStrategy());
employeeWithGoodStrategy = new Employee(EMPLOYEE3_NAME, BigDecimal.valueOf(3000), new GoodStrategy());
}