I'm using version 3.6.1.Final
I have the following property in my entity bean
@JoinColumn( name = "FOLDER_PARENT_ID", referencedColumnName = "FOLDER_ID" )
@ManyToOne(cascade=CascadeType.MERGE, fetch= FetchType.LAZY )
private FolderTbl parent;
In my unit test, Assertnull fails because getParent() is not null
assertNull( folderTbl.getParent() );
What else do I have to do to stop hibernate loading the parent?