123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.sinosoft.maintain.task;
- import junit.framework.TestCase;
- //import com.sinosoft.lz.maintain.task.TaskImpl;
- public class TestTaskImpl extends TestCase{
- //
- // private UnitTest unit = null;
- // private final Logger log = Logger.getLogger(getClass());
- //
- // protected void setUp() throws Exception {
- // unit = new UnitTest();
- // super.setUp();
- // }
- //
- // protected void tearDown() throws Exception {
- // super.tearDown();
- // }
- //
- // public final void testUpdateState() {
- //
- // boolean flag=false;
- // JDBCHelper JDBCHelper = new JDBCHelper();
- // try{
- // TaskImpl taskImpl = new TaskImpl();
- // JDBCHelper.begin();
- // flag=taskImpl.updateState(JDBCHelper, "433127200970082800001817110109" ,
- // "6", "2");
- // log.info("--- "+flag);
- // if(flag){
- // JDBCHelper.commit();
- // }else{
- // JDBCHelper.rollback();
- // }
- // super.assertEquals(true, flag);
- // }catch(Exception e){
- // flag=false;
- // JDBCHelper.rollback();
- // log.error("错误-- ",e);
- // }
- // fail("Not yet implemented"); // TODO
- // }
- }
|