I am using an EJB schedule to do email daemon task:
@Schedule(hour="8, 10, 12, 14, 16, 18")
public void sendExpirationReminders() {
}
How can I test these methods on a running server?
I currently use HtmlUnit for most of my testing so I can make real browser requests. But I'm at a loss how to test the inner contents of these daemon methods.