Package org.neo4j.cineasts.domain

Examples of org.neo4j.cineasts.domain.Actor


        assertEquals("movie-id", movie, foundMovie);
    }

    @Test
    public void testImportPerson() throws Exception {
        Person actor = importService.importPerson("105955", new Actor("105955",null));
        assertEquals("movie-id","105955", actor.getId());
        assertEquals("movie-title","George M. Williamson", actor.getName());
    }
View Full Code Here

TOP

Related Classes of org.neo4j.cineasts.domain.Actor

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.