Ejemplo n.º 1
0
 /**
  * @covers ::__call
  */
 public function testProxiesMethodToAuthenticationService()
 {
     $auth = $this->getMockBuilder('\\Auth\\AuthenticationService')->disableOriginalConstructor()->getMock();
     $auth->expects($this->once())->method('getUser')->willReturn(true);
     $target = new AuthHelper();
     $target->setService($auth);
     $this->assertTrue($target->getUser());
 }