Package com.omertron.themoviedbapi.model

Examples of com.omertron.themoviedbapi.model.Account


    }

    @Test
    public void testAccount() throws MovieDbException {
        LOG.info("Using Session ID '{}' for test", SESSION_ID_APITESTS);
        Account account = tmdb.getAccount(SESSION_ID_APITESTS);

        // Make sure properties are extracted correctly
        assertEquals("apitests", account.getUserName());
        assertEquals(ACCOUNT_ID_APITESTS, account.getId());
    }
View Full Code Here

TOP

Related Classes of com.omertron.themoviedbapi.model.Account

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.