Package com.chen.dao

Examples of com.chen.dao.TestDAO


    @Test
    public void getTestTest() {
        com.chen.model.Test t = new com.chen.model.Test();
        t.setId(1111);
        t.setMsg("adfadf");
        TestDAO testDAO = EasyMock.createMock("testDAO", TestDAO.class);

        EasyMock.expect(testDAO.getTest()).andReturn(t);
        EasyMock.replay(testDAO);

        ReflectionTestUtils.setField(service, "testDAO", testDAO, TestDAO.class);

        t = service.getTest();
View Full Code Here

TOP

Related Classes of com.chen.dao.TestDAO

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.