Examples of ImdbPerson


Examples of com.omertron.imdbapi.model.ImdbPerson

     */
    @Test
    public void testGetActorDetails() {
        LOG.info("getActorDetails");
        for (String actorId : ACTOR_IDS) {
            ImdbPerson result = imdbApi.getActorDetails(actorId);
            assertNotNull("Actor Details is empty for " + actorId, result);
        }
    }
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.