/** * @test * @group admin */ public function verifyAdminSearchHasProperties() { $this->adminSearch->__setProperty("title", "test title"); $this->adminSearch->__setProperty("description", "test description"); $this->adminSearch->__setProperty("url", "http://www.your.domain"); $this->assertEquals($this->adminSearch->getTitle(), "test title"); $this->assertEquals($this->adminSearch->getDescription(), "test description"); $this->assertEquals($this->adminSearch->getUrl(), "http://www.your.domain"); }