예제 #1
0
파일: MemoryTest.php 프로젝트: fwk/security
 /**
  */
 public function testGetById()
 {
     $user = new TestUser(1, 'joe2083');
     $this->object->add($user);
     $this->assertEquals($user, $this->object->getById(1));
     $this->setExpectedException('\\Fwk\\Security\\Exceptions\\UserNotFound');
     $this->object->getById(2);
 }