Package assignment4

Examples of assignment4.Book


  /**
   * @throws Exception
   */
  public void testPageConstructor() throws Exception
  {
    Book mockBook = new Book("xxId", "xxName");
    Page page = new ViewBook(mockBook);
    tester.startPage(page);

    // assertion
    tester.assertRenderedPage(ViewBook.class);
View Full Code Here


  protected void setUp() throws Exception
  {
    super.setUp();

    books = new Book[] { new Book("1", "book1"), new Book("2", "book2"),
        new Book("3", "book3"), new Book("4", "book4") };

    choicePage = (ChoicePage)tester.startPage(new ITestPageSource()
    {
      private static final long serialVersionUID = 1L;
View Full Code Here

    {
      private static final long serialVersionUID = 1L;

      public Page getTestPage()
      {
        Book mockBook = new Book("xxId", "xxName");
        return new ViewBook(mockBook);
      }
    });

    // assertion
View Full Code Here

    {
      private static final long serialVersionUID = 1L;

      public Page getTestPage()
      {
        Book mockBook = new Book("xxId", "xxName");
        return new ViewBook(mockBook);
      }
    });

    // assertion
View Full Code Here

  /**
   * @throws Exception
   */
  public void testPageConstructor() throws Exception
  {
    Book mockBook = new Book("xxId", "xxName");
    Page page = new ViewBook(mockBook);
    tester.startPage(page);

    // assertion
    tester.assertRenderedPage(ViewBook.class);
View Full Code Here

  @Override
  protected void setUp() throws Exception
  {
    super.setUp();

    books = new Book[] { new Book("1", "book1"), new Book("2", "book2"),
        new Book("3", "book3"), new Book("4", "book4") };

    choicePage = (ChoicePage)tester.startPage(new ITestPageSource()
    {
      private static final long serialVersionUID = 1L;
View Full Code Here

    {
      private static final long serialVersionUID = 1L;

      public Page getTestPage()
      {
        Book mockBook = new Book("xxId", "xxName");
        return new ViewBook(mockBook);
      }
    });

    // assertion
View Full Code Here

    {
      private static final long serialVersionUID = 1L;

      public Page getTestPage()
      {
        Book mockBook = new Book("xxId", "xxName");
        return new ViewBook(mockBook);
      }
    });

    // assertion
View Full Code Here

  /**
   * @throws Exception
   */
  public void testPageConstructor() throws Exception
  {
    Book mockBook = new Book("xxId", "xxName");
    Page page = new ViewBook(mockBook);
    tester.startPage(page);

    // assertion
    tester.assertRenderedPage(ViewBook.class);
View Full Code Here

   * @throws Exception
   */
  @Test
  public void viewBook() throws Exception
  {
    Book mockBook = new Book("xxId", "xxName");
    Page page = new ViewBook(mockBook);
    tester.startPage(page);

    // assertion
    tester.assertRenderedPage(ViewBook.class);
View Full Code Here

TOP

Related Classes of assignment4.Book

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.