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