Package rewards.internal.account

Examples of rewards.internal.account.AccountDao


    @Autowired @Qualifier("uPromiseSucursal")
    private RewardNetwork upromiseSucursal;

    @Test
    public void deberiaGenerarSingletonYPrototype(){
        AccountDao rewardNetworkAccountDao = rewardNetwork.getAccountDao();
        AccountDao joedayzAccountDao = joedayz.getAccountDao();
        AccountDao upromiseAccountDao = upromise.getAccountDao();
        AccountDao upromiseSucursalAccountDao = upromiseSucursal.getAccountDao();

        assertNotNull(rewardNetworkAccountDao);
        assertNotNull(joedayzAccountDao);
        assertNotNull(upromiseAccountDao);
        assertNotNull(upromiseSucursalAccountDao);
        assertEquals(rewardNetworkAccountDao.toString(), joedayzAccountDao.toString());
        assertNotEquals(upromiseAccountDao.toString(), upromiseSucursalAccountDao.toString());

    }
View Full Code Here

TOP

Related Classes of rewards.internal.account.AccountDao

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.