Minor dependency updates

This commit is contained in:
Graham Triggs 2017-09-28 22:14:07 +01:00
parent ff71245de1
commit 93884142b4
3 changed files with 6 additions and 148 deletions

View file

@ -1,30 +0,0 @@
/* $This file is distributed under the terms of the license in LICENSE$ */
package edu.cornell.mannlib.vitro.webapp.utils;
import org.apache.log4j.Level;
import org.junit.Before;
import org.junit.Test;
import edu.cornell.mannlib.vitro.testing.AbstractTestClass;
/**
* User: jc55
* Date: August 22, 2008
* Time: 4:37 PM
*/
public class MakeTidyTest extends AbstractTestClass {
@Before
public void suppressLogging() {
setLoggerLevel(MakeTidy.class, Level.WARN);
}
@Test
public void testTidy(){
String inputStr = "<p garbage here/><ul><li>list element one</li><li>list element two</li></ul></p";
String expected = "<ul><li>list element one</li><li>list element two</li></ul>";
MakeTidy tidy = new MakeTidy();
assertEquivalentXmlDocs(expected, tidy.process(inputStr));
}
}