Examples of IEmployee


Examples of pl.edu.oop.java.company.employee.IEmployee

    }

    @Test
    public void getSatisfaction_shouldAlwaysReturnAnswerGood() throws Exception {
        //given
        IEmployee employee = mock(IEmployee.class);

        //when
        Answer satisfaction = instance.getSatisfaction(employee);

        //then
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.