我要寫一個JUnit來檢查版本是否被維護(在一個事件上)。下面是我使用的是什麼JUnit的: @Test
Public void testAudit() {
try {
//create Dao code
dao.save(); //This will create entry in AUD- and REVINFO-tables perfectly
我是#hibernate IRC和人共享了以下(部分)的圖案與我 @Entity
public MyEntity() {
... primary key, object properties, getters/setters go here ...
@Column(nullable=false)
private int hashCode;
publ