Package employee

Examples of employee.Answer


    public void getSatisfaction_shouldReturnLowWhenSalaryIsBelowAverage() {
        //given
        IEmployee employee = mock(IEmployee.class);
        given(employee.getSalary()).willReturn(BigDecimal.ONE);
        //when
        final Answer satisfaction = instance.getSatisfaction(employee);
        //then
        assertThat(satisfaction).isEqualTo(Answer.BAD);
    }
View Full Code Here


    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);
    }
View Full Code Here

TOP

Related Classes of employee.Answer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.