make PHPUnit happy and add asserts

remotes/origin/stable6
Thomas Mueller 13 years ago
parent 42cb77b982
commit 3abeb252d8
  1. 2
      tests/lib/session/session.php

@ -44,7 +44,9 @@ abstract class Session extends \PHPUnit_Framework_TestCase {
}
public function testRemoveNonExisting() {
$this->assertFalse($this->instance->exists('foo'));
$this->instance->remove('foo');
$this->assertFalse($this->instance->exists('foo'));
}
public function testNotExistsAfterClear() {

Loading…
Cancel
Save