protected function setUp() { $this->author = $this->createMockAuthor('kirk'); parent::setUp(); }
protected function setUp() { $this->mockAuthorInterface = $this->getMock('Trismegiste\\Socialist\\AuthorInterface'); $this->mockAuthorInterface->expects($this->any())->method('getNickname')->will($this->returnValue('ncc1701')); parent::setUp(); }