Exemplo n.º 1
0
 public function testLoad()
 {
     $token = 'testToken';
     $this->resourceMock->expects($this->once())->method('load');
     $actualToken = $this->tokenModel->loadByToken($token);
     $this->assertEquals($this->tokenModel, $actualToken);
 }