auctiontest2.java

来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 24 行

JAVA
24
字号
//$Id: AuctionTest2.java,v 1.1 2005/02/14 15:56:06 oneovthafew Exp $
package org.hibernate.test.bidi;

import junit.framework.Test;
import junit.framework.TestSuite;

/**
 * @author Gavin King
 */
public class AuctionTest2 extends AuctionTest {
	public AuctionTest2(String str) {
		super(str);
	}

	protected String[] getMappings() {
		return new String[] { "bidi/Auction2.hbm.xml" };
	}

	public static Test suite() {
		return new TestSuite(AuctionTest2.class);
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?