* @param forumId the forum id
* @param userId the user id
* @return a new thread instance
*/
private Thread newThread(long id, long forumId, long userId) {
Thread thread = new Thread();
thread.setId(id);
thread.setForumId(forumId);
thread.setUserProfileId(userId);
thread.setTitle("thread title" + id);
return thread;
}