Package org.jmcdonnell.blackoutrugby.beans

Examples of org.jmcdonnell.blackoutrugby.beans.PlayerHistory


        Long playerId = new Long(System.getProperty("player.1.id"));
        List<PlayerHistory> entitiesFromApi
                = requestManager.getListOfEntityByIdFromApi(playerId, PlayerHistory.class, Boolean.FALSE, Boolean.FALSE);

        assertTrue(entitiesFromApi.size() > 0);
        PlayerHistory get = entitiesFromApi.get(0);

        assertNotNull(get.getDate());
        assertNotNull(get.getEvent());
        assertTrue(get.getPlayerId().equals(playerId));
    }
View Full Code Here

TOP

Related Classes of org.jmcdonnell.blackoutrugby.beans.PlayerHistory

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.