📄 testeventwithreset.java
字号:
package com.manning.hq.ch10;
import junit.framework.TestCase;
import org.hibernate.HibernateException;
import org.hibernate.Session;
/**
*
*/
public class TestEventWithReset extends TestCase {
protected void setUp() throws Exception {
super.setUp();
Session session = HibernateFactory.openSession();
session.createQuery("delete Event").executeUpdate();
HibernateFactory.close(session);
}
/**
*
*/
public void testOne() throws HibernateException {
Session session = HibernateFactory.openSession();
session.save(new Event());
HibernateFactory.close(session);
}
/**
*
*/
public void testTwo() throws HibernateException {
Session session = HibernateFactory.openSession();
session.save(new Event());
HibernateFactory.close(session);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -