Examples of HeroDTO


Examples of cz.muni.fi.pa165.ddtroops.dto.HeroDTO

        verify(heroDao).getById(hero.getId());
    }
    @Test
    public void testGetAll(){
        Hero hero2 = this.createHero();
        HeroDTO hero2DTO = DTOFactory.createHeroDTO(hero2);
        service.create(heroDTO);
        service.create(hero2DTO);
        service.getAll();
        verify(heroDao).getAll();
    }
View Full Code Here

Examples of cz.muni.fi.pa165.ddtroops.dto.HeroDTO

        verify(heroDao).getAll();
    }

    @Test
    public void testCreateNewHero(){
        HeroDTO newHero = service.createNewHero(Gender.MALE, "atheist", "miner",
                mock(RaceDTO.class), Byte.MIN_VALUE, Byte.MIN_VALUE,
                Byte.MIN_VALUE, Byte.MIN_VALUE, Byte.MIN_VALUE, Byte.MIN_VALUE);
        assertNull(newHero);
    }
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.