Examples of TeamStatistics


Examples of org.jmcdonnell.blackoutrugby.beans.TeamStatistics

*/
public class RequestManagerTeamStatisiticsTest extends AbstractApiRequestTest {

    @Test
    public void testGetNationalTeamStatisicsByIdNotNull() throws BlackoutException {
        TeamStatistics teamStats
                = requestManager.getEntityFromApi(new Long(9), TeamStatistics.class, Boolean.TRUE, Boolean.FALSE);

        assertNotNull(teamStats);
    }
View Full Code Here

Examples of org.jmcdonnell.blackoutrugby.beans.TeamStatistics

        assertNotNull(teamStats);
    }

    @Test
    public void testGetUnderTwentyTeamStatisicsByIdNotNull() throws BlackoutException {
        TeamStatistics teamStats
                = requestManager.getEntityFromApi(new Long(9), TeamStatistics.class, Boolean.TRUE, Boolean.TRUE);

        assertNotNull(teamStats);
    }
View Full Code Here

Examples of org.jmcdonnell.blackoutrugby.beans.TeamStatistics

        assertNotNull(teamStats);
    }

    @Test
    public void testGetClubTeamStatisicsByIdNotNull() throws BlackoutException {
        TeamStatistics teamStats
                = requestManager.getEntityFromApi(new Long(System.getProperty("member.team.id")), TeamStatistics.class, Boolean.FALSE, Boolean.FALSE);

        assertNotNull(teamStats);
    }
View Full Code Here

Examples of org.jmcdonnell.blackoutrugby.beans.TeamStatistics

        assertNotNull(teamStats);
    }

    @Test
    public void testGetYouthTeamStatisicsByIdNotNull() throws BlackoutException {
        TeamStatistics teamStats
                = requestManager.getEntityFromApi(new Long(System.getProperty("member.team.id")), TeamStatistics.class, Boolean.FALSE, Boolean.TRUE);

        assertNotNull(teamStats);
    }
View Full Code Here

Examples of org.jmcdonnell.blackoutrugby.beans.TeamStatistics

        assertNotNull(teamStats);
    }

    @Test
    public void testGetTeamStatisticsById() throws BlackoutException {
        TeamStatistics playerStats
                = requestManager.getEntityFromApi(new Long(System.getProperty("member.team.id")), TeamStatistics.class, Boolean.FALSE, Boolean.FALSE);

        assertTrue(playerStats.getTeamId().equals(new Long(System.getProperty("member.team.id"))));
        assertNotNull(playerStats.getAverageKickingMetres());
        assertNotNull(playerStats.getAverageMinsInTwentyTwo());
        assertNotNull(playerStats.getBadKicks());
        assertNotNull(playerStats.getBadUpAndUnders());
        assertNotNull(playerStats.getBallTime());
        assertNotNull(playerStats.getConversions());
        assertNotNull(playerStats.getDropGoals());
        assertNotNull(playerStats.getFights());
        assertNotNull(playerStats.getForwardPasses());
        assertNotNull(playerStats.getGoodKicks());
        assertNotNull(playerStats.getGoodUpAndUnders());
        assertNotNull(playerStats.getHandlingErrors());
        assertNotNull(playerStats.getInjuries());
        assertNotNull(playerStats.getIntercepts());
        assertNotNull(playerStats.getKickingMetres());
        assertNotNull(playerStats.getKicks());
        assertNotNull(playerStats.getKicksOutOnTheFull());
        assertNotNull(playerStats.getKnockOns());
        assertNotNull(playerStats.getLineBreaks());
        assertNotNull(playerStats.getLineoutsAgainstThrow());
        assertNotNull(playerStats.getLineoutsLost());
        assertNotNull(playerStats.getLineoutsWon());
        assertNotNull(playerStats.getMatchesPlayed());
        assertNotNull(playerStats.getMaulsWon());
        assertNotNull(playerStats.getMetresGained());
        assertNotNull(playerStats.getMinsInTwentyTwo());
        assertNotNull(playerStats.getMissedConversions());
        assertNotNull(playerStats.getMissedDropGoals());
        assertNotNull(playerStats.getMissedPenalties());
        assertNotNull(playerStats.getMissedTackles());
        assertNotNull(playerStats.getPenalties());
        assertNotNull(playerStats.getPenaltiesConceded());
        assertNotNull(playerStats.getPenaltiesWon());
        assertNotNull(playerStats.getPenaltyTime());
        assertNotNull(playerStats.getPhases());
        assertNotNull(playerStats.getPossession());
        assertNotNull(playerStats.getRedCards());
        assertNotNull(playerStats.getRucksWon());
        assertNotNull(playerStats.getScrumsAgainstPutIn());
        assertNotNull(playerStats.getScrumsLost());
        assertNotNull(playerStats.getScrumsWon());
        assertNotNull(playerStats.getSevenPlusPhases());
        assertNotNull(playerStats.getTackles());
        assertNotNull(playerStats.getTerritory());
        assertNotNull(playerStats.getTotalPoints());
        assertNotNull(playerStats.getTries());
        assertNotNull(playerStats.getTurnovers());
        assertNotNull(playerStats.getTurnoversConceded());
        assertNotNull(playerStats.getUpAndUnders());
        assertNotNull(playerStats.getYellowCards());
    }
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.