예제 #1
0
파일: MemoryTest.php 프로젝트: fwk/security
 /**
  */
 public function testAdd()
 {
     $this->assertEquals(0, $this->object->count());
     $user = new TestUser(1, 'joe2083');
     $this->object->add($user);
     $this->assertTrue($this->object->has($user));
     $this->assertEquals(1, $this->object->count());
 }