免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1221 | 回复: 1
打印 上一主题 下一主题

紧急求救:请高手们看一下这个测试类该如何写 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-04-06 15:24 |只看该作者 |倒序浏览
private AbstractFlightManager afm;

   
    public RemoteFlightManager(final String dbname)
        throws FlightException, RemoteException {
               afm = new AbstractFlightManager(dbname) {
                };
    }

   
    public RemoteFlightManager(final String dbname, final FieldInfo[] fields)
        throws FlightException, RemoteException {
        afm = new AbstractFlightManager(dbname, fields) {
                };
    }

   
    public final FieldInfo[] getFieldInfo() throws RemoteException {
        return afm.getFieldInfo();
    }

   
    public final int getRecordCount() throws RemoteException {
        return afm.getRecordCount();
    }

  
    public final DataInfo getRecord(final int recNum)
        throws FlightException, RemoteException {
        return afm.getRecord(recNum);
    }

   
    public final DataInfo find(final String toMatch)
        throws FlightException, RemoteException {
        return afm.find(toMatch);
    }

  
    public final void add(final String[] newData)
            throws FlightException, RemoteException {
        afm.add(newData);
    }

  
    public final void modify(final DataInfo newData)
        throws FlightException, RemoteException {
        afm.modify(newData);
    }

   
    public final void delete(final DataInfo toDelete)
        throws FlightException, RemoteException {
        afm.delete(toDelete);
    }


    public final void close() throws RemoteException {
        afm.close();
    }


    public final String[] getAllUniqueValues(final int columnNum)
        throws FlightException, RemoteException {
        return afm.getAllUniqueValues(columnNum);
    }

   
    public final DataInfo[] criteriaFind(final String criteria)
        throws FlightException, RemoteException {
        return afm.criteriaFind(criteria);
    }


    public final void lock(final int record)
           throws FlightException, RemoteException {
        afm.lock(record);
    }

   
    public final void unlock(final int record) throws RemoteException {
        afm.unlock(record);
    }


    public final String[] getColumnNames() throws RemoteException {
        return afm.getColumnNames();
    }
   
    public final String[][] search(final String criteria)
        throws FlightException, RemoteException {
        return afm.search(criteria);
    }
   
    public final void book(final String flightNum, final int seatsNum)
        throws FlightException, RemoteException {
        afm.book(flightNum, seatsNum);
    }

谢谢大家了

论坛徽章:
0
2 [报告]
发表于 2006-04-06 18:17 |只看该作者
lz的工资会不会分给大家?工作任务拿上来让别人帮忙写??
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP