コード例 #1
0
 public function testSetSatisfied()
 {
     $result = $this->adapter->setSatisfied();
     $this->assertInstanceOf('ZfcUser\\Authentication\\Adapter\\AbstractAdapter', $result);
     $this->assertTrue($this->adapter->isSatisfied());
     $result = $this->adapter->setSatisfied(false);
     $this->assertInstanceOf('ZfcUser\\Authentication\\Adapter\\AbstractAdapter', $result);
     $this->assertFalse($this->adapter->isSatisfied());
 }