/** * @todo Implement testSetLink(). */ public function testSetLink() { $this->object = new JDocument; $this->object->setLink('My Link String'); $this->assertThat( $this->object->link, $this->equalTo('My Link String') ); }
/** * @testdox Test that setLink returns an instance of $this */ public function testEnsureSetLinkReturnsThisObject() { $this->assertSame($this->object, $this->object->setLink('http://www.joomla.org')); }