Skip to content

Instantly share code, notes, and snippets.

@nurkiewicz
Created June 19, 2011 10:37
Show Gist options
  • Save nurkiewicz/1034049 to your computer and use it in GitHub Desktop.
Save nurkiewicz/1034049 to your computer and use it in GitHub Desktop.
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration
public class BookstoreWjugTest {
@Resource
private BookstoreSEI bookstore;
@Test
public void shouldReturnTrueForCxfBook() throws Exception {
Book book = new Book("Apache CXF Web Service Development", "Naveen Balani & Rajeev Hathi");
assertTrue("Book about CXF should be available", bookstore.isAvailable(book));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment