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