@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(classes = SpringConfig.class) public class BookServiceTest {
@Autowired private BookService bookService;
@Test public void testGetById(){ Book book = bookService.getById(1); System.out.println(book); }
@Test public void testGetAll(){ List<Book> all = bookService.getAll(); System.out.println(all); }
}
|