@Override
public User editDescription(User user, String description) throws UserNotFoundException {
user.setAboutMe(description);
User returnedUser = userRepository.save(user);
if (returnedUser == null) {
throw new UserNotFoundException();
}
return returnedUser;
}
I have this service implementation and the test case is:
@Test
public void shouldEditDescriptionOfTheUser() throws UserNotFoundException{
databuilderService.createAll();
User user = userService.findByEmail("[email protected]");
user.setAboutMe("It's a description about the user");
userService.save(user);
String aboutMe = user.getAboutMe();
LOGGER.info(aboutMe);
Assert.assertNotNull(aboutMe);
}
is this test case covering all the branches ? Should I write another test case for checking the value of user object(null checking) which is a branch in service ?
No it does not.
Obvious it does cover nothing, because it does not invoke the method under test at all!
BTW: I do not know your repository, but it is likely that
userRepository.save(user)
always return the given user, so maybe theif (returnedUser == null)
is nonesence, and it is more usefull to remove thatif
instead of writing an test for.Replace the Logger with an assert first and invoke the method:
Maybe also check that the user is really saved.
You can also have an other test, that test that the user is created in the datebase when it was not loaded/or saved before.