Package com.omertron.imdbapi.model

Examples of com.omertron.imdbapi.model.ImdbSynopsis


     */
    @Test
    public void testGetTitleSynopsis() {
        LOG.info("getTitlePlot");
        for (String imdbId : IMDB_IDS) {
            ImdbSynopsis result = imdbApi.getTitleSynopsis(imdbId);
            assertNotNull("Title synopsis is empty for " + imdbId, result);
        }
    }
View Full Code Here

TOP

Related Classes of com.omertron.imdbapi.model.ImdbSynopsis

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.