I have a class which I have annotated as @injectMock. This class has a constructor which loads messages from in put stream as below:
public class RegistrationEventValidator {
    private Properties validationMessages;
    RegistrationEventValidator() {
        validationMessages = new Properties();
        try {
            validationMessages.load(RegistrationEventValidator.class.getClassLoader().getResourceAsStream("ValidationMessages.properties"));
        } catch (IOException e) {
            throw new InternalErrorException("Failed loading ValidationMessages.properties");
        }
    }
}
My test covers up until the "catch exception". How do I unit test that part? Thank you.
This is what I have so far and I am getting this error: "org.opentest4j.AssertionFailedError: Expected com.autonation.ca.exception.InternalErrorException to be thrown, but nothing was thrown"
@Test
void test_validation_messages_properties() throws IOException {
    //given
    List<String> errors = new ArrayList<>();
    Event<AuthEventDetails> event = new Event<>();
    AuthEventDetails request = new AuthEventDetails();
    event.setCustomerId(RandomStringUtils.random(65));
    request.setFirstName(RandomStringUtils.random(256));
    request.setLastName(RandomStringUtils.random(256));
  
    event.setEventDetails(request);
    doThrow(new InternalErrorException("Failed loading ValidationMessages.properties")).when(validationMessages).load(any(InputStream.class));
    assertThrows(InternalErrorException.class, () -> registrationEventValidator.validate(event, errors));
}
 
    