コード例 #1
0
	/**
	 * Test getExpire()
	 *
	 * @covers  JSession::getExpire
	 *
	 * @return void
	 */
	public function testGetExpire()
	{
		$this->assertEquals(
			TestReflection::getValue($this->object, '_expire'),
			$this->object->getExpire(),
			'Session expire time should be the same'
		);
	}
コード例 #2
0
 /**
  * Test...
  *
  * @covers  JSession::getExpire
  *
  * @return void
  */
 public function testGetExpire()
 {
     $this->assertEquals(20, $this->object->getExpire(), 'Session expire should be 20');
 }