コード例 #1
0
 @Test
 public void testFindQuestion() {
   FaqJpaController faqJpaController = new FaqJpaController();
   List<Faq> faq = faqJpaController.findQuestion("they");
   System.out.println("So Luong Question: " + faq.size());
   assertNotNull("Find Question khong thanh cong", faq);
 }