blibli-future / athens

0 stars 1 forks source link

Unit Testing #3

Closed aamesaa closed 7 years ago

aamesaa commented 7 years ago

@kabal86 How to do all above?

yogiehartanto commented 7 years ago

Unit Testing : @InjectMocks --> for service that you want to test (implementation) example : @InjectMocks private EmployeeServiceImpl employeeService;

@Mock --> for create mock up (interface) example : @Mock private EmployeeHistoryService employeeHistoryService;

further example attached

service and repository(database) unittest.zip

excel example unittest.zip