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