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