Package org.ops4j.pax.exam.sample4.service

Examples of org.ops4j.pax.exam.sample4.service.LibraryService


    public void fillLibrary() {
        if (getNumBooks() != 0) {
            return;
        }

        Author mann = createAuthor("Thomas", "Mann");
        Author steinbeck = createAuthor("John", "Steinbeck");

        createBook("Buddenbrooks", mann);
        createBook("East of Eden", steinbeck);
    }
View Full Code Here


        return books;
    }

    public Author createAuthor(String firstName, String lastName) {
        em.getTransaction().begin();
        Author author = new Author();
        author.setFirstName(firstName);
        author.setLastName(lastName);
        em.persist(author);
        em.flush();
        em.getTransaction().commit();
        return author;
    }
View Full Code Here

    public void byTitle() {
        service.fillLibrary();
        List<Book> books = service.findBooksByTitle("East of Eden");
        assertEquals(1, books.size());

        Book book = books.get(0);
        assertEquals("Steinbeck", book.getAuthor().getLastName());
    }
View Full Code Here

    @Test
    public void byAuthor() {
        List<Book> books = service.findBooksByAuthor("Mann");
        assertEquals(1, books.size());

        Book book = books.get(0);
        assertEquals("Buddenbrooks", book.getTitle());
    }
View Full Code Here

    @Test
    public void byAuthor() {
        List<Book> books = service.findBooksByAuthor(authorLastName);
        assertEquals(1, books.size());

        Book book = books.get(0);
        assertEquals(bookTitle, book.getTitle());
    }
View Full Code Here

        return author;
    }

    public Book createBook(String title, Author author) {
        em.getTransaction().begin();
        Book book = new Book();
        book.setTitle(title);
        book.setAuthor(author);
        author.getBooks().add(book);
        em.persist(book);
        em.flush();
        em.getTransaction().commit();
        return book;
View Full Code Here

        return bean.getObject();
    }

    @Bean
    public LibraryService libraryService() {
        return new LibraryService();
    }
View Full Code Here

        return bean.getObject();
    }

    @Bean
    public LibraryService libraryService() {
        return new LibraryService();
    }
View Full Code Here

TOP

Related Classes of org.ops4j.pax.exam.sample4.service.LibraryService

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.