public function testScriptActionProperty() { $this->assertNull($this->helper->getScriptAction()); $this->helper->setScriptAction('foo'); $this->assertEquals('foo', $this->helper->getScriptAction()); $this->helper->setScriptAction('foo/bar'); $this->assertEquals('foo/bar', $this->helper->getScriptAction()); }