Project

General

Profile

1
package eu.dnetlib.miscutils.functional.xml;
2

    
3
import org.junit.Test;
4

    
5
public class IndentXmlStringTest {
6

    
7
	@Test
8
	public void testEvaluate() {
9
		String indented = new XMLIndenter().apply("<root><a/><b>Ciao</b></root>");
10
		System.out.println(indented);
11
	}
12

    
13
}
(3-3/4)