1, "title" => "Title 1"), array("id" => 2, "title" => "Title 2"), ); public function setUp() { } public function testConstruct() { $data = new Asra_Export_Data(); $this->assertNotNull($data); $this->assertNull($data->getValue()); } public function testConstructData() { $data = new Asra_Export_Data($this->filler); $this->assertNotNull($data); $this->assertEquals($this->filler, $data->getValue()); } }