Package org.agoncal.book.javaee7.chapter02.ex07

Source Code of org.agoncal.book.javaee7.chapter02.ex07.NumberGenerator07IT

package org.agoncal.book.javaee7.chapter02.ex07;

import org.agoncal.book.javaee7.chapter02.ex07.Book07;
import org.agoncal.book.javaee7.chapter02.ex07.BookService07;
import org.jboss.weld.environment.se.Weld;
import org.jboss.weld.environment.se.WeldContainer;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;

import static org.junit.Assert.assertTrue;

/**
* @author Antonio Goncalves
*         APress Book - Beginning Java EE 7 with Glassfish 4
*         http://www.apress.com/
*         http://www.antoniogoncalves.org
*         --
*/
public class NumberGenerator07IT {

  // ======================================
  // =             Attributes             =
  // ======================================

  protected static Weld weld;
  protected static WeldContainer container;

  // ======================================
  // =          Lifecycle Methods         =
  // ======================================

  @BeforeClass
  public static void init() {
    weld = new Weld();
    container = weld.initialize();
  }

  @AfterClass
  public static void close() {
    weld.shutdown();
  }

  // ======================================
  // =              Methods               =
  // ======================================

  @Test
  public void shouldCheckNumberIsThirteenDigits() {
    BookService07 bookService = container.instance().select(BookService07.class).get();
    Book07 book = bookService.createBook("H2G2", 12.5f, "Geeky scifi Book");
    assertTrue(book.getIsbn().startsWith("13"));
  }

  @Test
  public void shouldCheckNumberIsEightDigits() {
    LegacyBookService07 bookService = container.instance().select(LegacyBookService07.class).get();
    Book07 book = bookService.createBook("H2G2", 12.5f, "Geeky scifi Book");
    assertTrue(book.getIsbn().startsWith("8"));
  }
}
TOP

Related Classes of org.agoncal.book.javaee7.chapter02.ex07.NumberGenerator07IT

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.