| Index: javatests/org/chromium/distiller/webdocument/LIEndTest.java
 | 
| diff --git a/javatests/org/chromium/distiller/webdocument/LIEndTest.java b/javatests/org/chromium/distiller/webdocument/LIEndTest.java
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..115e9602452fe2894ada14786b05f697c2fa77d8
 | 
| --- /dev/null
 | 
| +++ b/javatests/org/chromium/distiller/webdocument/LIEndTest.java
 | 
| @@ -0,0 +1,15 @@
 | 
| +package org.chromium.distiller.webdocument;
 | 
| +
 | 
| +
 | 
| +import org.chromium.distiller.DomDistillerJsTestCase;
 | 
| +
 | 
| +public class LIEndTest extends DomDistillerJsTestCase {
 | 
| +
 | 
| +    public void testGenerateOutput() {
 | 
| +        LIEnd liEnd = new LIEnd();
 | 
| +        String got = liEnd.generateOutput(false);
 | 
| +        String want = "</li>";
 | 
| +
 | 
| +        assertEquals(want, got);
 | 
| +    }
 | 
| +}
 | 
| 
 |