/**
  * Test for the stdWrap function "expandList"
  *
  * @param string $content
  * @param string $expected
  *
  * @dataProvider stdWrap_expandListDataProvider
  * @test
  */
 public function stdWrap_expandList($content, $expected)
 {
     $result = $this->subject->stdWrap_expandList($content);
     $this->assertEquals($expected, $result);
 }