Package org.exoplatform.test

Source Code of org.exoplatform.test.TestHTMLTidy

/**
* Copyright (C) 2009 eXo Platform SAS.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.exoplatform.test;

/**
* Created by The eXo Platform SARL
* Author : Lai Van Khoi
*          laivankhoi46pm1@yahoo.com
* Nov 27, 2006 
*/
import org.exoplatform.component.test.AbstractGateInTest;
import org.exoplatform.services.html.tidy.HTMLTidy;

import java.util.List;

public class TestHTMLTidy extends AbstractGateInTest
{

   public void testText() throws Exception
   {
      String text =
         "<html>" + "  <body>" + "    <div>" + "       hello" + "    </div>" + "    <p>" + "    <div>"
            + "      <% ta co %>asadsd </font> </b>" + "  </div>" + "  </body>" + "</html>";

      HTMLTidy tidy = new HTMLTidy();
      List<String> messages = tidy.check(text.toCharArray());
      System.out.println("\n\n\n");
      for (String msg : messages)
      {
         System.out.println(msg);
      }
      System.out.println("\n\n\n");
   }
}
TOP

Related Classes of org.exoplatform.test.TestHTMLTidy

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.