6 class XmlJs
extends PHPUnit_Framework_TestCase
{
9 * @covers XmlJsCode::__construct
10 * @dataProvider provideConstruction
12 public function testConstruction( $value ) {
13 $obj = new XmlJsCode( $value );
14 $this->assertEquals( $value, $obj->value
);
17 public static function provideConstruction() {