📄 typedaotest.java
字号:
package com.doone.fj1w.fjmgr.netstore;
import com.doone.data.DataTable;
import com.doone.wskfmgr.business.netstore.TypeDAO;
import junit.framework.TestCase;
public class TypeDAOTest extends TestCase {
protected void setUp() throws Exception {
super.setUp();
}
protected void tearDown() throws Exception {
super.tearDown();
}
public void testGetStoreType() {
DataTable table = TypeDAO.getStoreType("");
System.out.println(table.getRows().getCount());
}
public void testGetStoreTypeName() {
String table = TypeDAO.getStoreTypeName(1L);
System.out.println(table);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -