public void exception_helper_resource_can_be_in_custom_location()
 {
     var exceptionHelper = new ExceptionHelper(typeof(ExceptionHelperFixture), "Kent.Boogaart.HelperTrinity.UnitTests.ExceptionHelper.Subfolder.CustomExceptionHelperResource.xml");
     var ex = Assert.Throws<InvalidOperationException>(() => exceptionHelper.ResolveAndThrowIf(true, "anException"));
     Assert.Equal("Here is the message.", ex.Message);
 }