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