Examples of BrokerDaoSupport


Examples of org.springmodules.orm.orbroker.support.BrokerDaoSupport

    BrokerTemplate template = new BrokerTemplate();
    Broker broker = new Broker(ds);
    template.setBroker(broker);
    assertEquals(broker, template.getBroker());

    BrokerDaoSupport testDao = new BrokerDaoSupport() {
    };
    testDao.setBrokerTemplate(template);
    assertEquals(template, testDao.getBrokerTemplate());

    testDao.afterPropertiesSet();
    dsControl.verify();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.