assertEquals($expected, $rendered);
}
static public function provider()
{
return array(
array('hello',
'hello'),
array('#hello people',
'#hello people'),
array('"#hello" people',
'"#hello" people'),
array('say "#hello" people',
'say "#hello" people'),
array('say (#hello) people',
'say (#hello) people'),
array('say [#hello] people',
'say [#hello] people'),
array('say {#hello} people',
'say {#hello} people'),
array('say \'#hello\' people',
'say \'#hello\' people'),
);
}
}