add Lists.tests
This commit is contained in:
parent
dcc87c7dec
commit
17c6be0bec
|
@ -215,3 +215,9 @@ func TestCodeInList(t *testing.T) {
|
||||||
exts := parser.CommonExtensions
|
exts := parser.CommonExtensions
|
||||||
doTestsParam(t, tests, TestParams{extensions: exts})
|
doTestsParam(t, tests, TestParams{extensions: exts})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestLists(t *testing.T) {
|
||||||
|
tests := readTestFile2(t, "Lists.tests")
|
||||||
|
exts := parser.CommonExtensions
|
||||||
|
doTestsParam(t, tests, TestParams{extensions: exts})
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
1. This is the code in the Text Editor:
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
using System;
|
||||||
|
namespace FirstCsharp
|
||||||
|
```
|
||||||
|
+++
|
||||||
|
<ol>
|
||||||
|
<li>This is the code in the Text Editor:</li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<pre><code>using System;
|
||||||
|
namespace FirstCsharp
|
||||||
|
</code></pre>
|
Loading…
Reference in New Issue