Package com.taobao.tdhs.jdbc.test.mybatis.vo

Examples of com.taobao.tdhs.jdbc.test.mybatis.vo.TestVO


    }

    @Test
    public void testUpdate() {
        SqlSession tdhsSession = getTDHSSession();
        TestVO updateVo = new TestVO();
        updateVo.setAaa("kevin");
        int i = tdhsSession.getMapper(TestMapper.class).update(updateVo);
        assertEquals(2, i);
        tdhsSession.close();
        DATA[1].setAaa("kevin");
        DATA[2].setAaa("kevin");
View Full Code Here


    }

    @Test
    public void testDelete() {
        SqlSession tdhsSession = getTDHSSession();
        TestVO deleteVO = new TestVO();
        deleteVO.setBbb(3);
        int i = tdhsSession.getMapper(TestMapper.class).delete(deleteVO);
        assertEquals(1, i);
        tdhsSession.close();
        DATA = Arrays.copyOf(DATA, 2);
View Full Code Here

TOP

Related Classes of com.taobao.tdhs.jdbc.test.mybatis.vo.TestVO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.