/**
  * Test for the stdWrap function "hash"
  *
  * @param string $text
  * @param array $conf
  * @param string $expected
  * @return void
  * @dataProvider hashDataProvider
  * @test
  */
 public function stdWrap_hash($text, array $conf, $expected)
 {
     $result = $this->cObj->stdWrap_hash($text, $conf);
     $this->assertEquals($expected, $result);
 }