/**
   * @throws Exception
   * @see TopTenDAOImpl#getTopTen_T_List(String,String)
   */
  public void testGetTopTen_T_List() throws Exception {
    String teacher_type = "1";
    String is_display = "1";
    DAO = TopTenDAOFactory.getDAO();

    List result = DAO.getTopTen_T_List(teacher_type, is_display);

    if (result != null) {
      System.out.println("size =====================" + result.size());
    }
  }