make PHPUnit happy and add asserts
This commit is contained in:
parent
42cb77b982
commit
3abeb252d8
|
@ -44,7 +44,9 @@ abstract class Session extends \PHPUnit_Framework_TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testRemoveNonExisting() {
|
public function testRemoveNonExisting() {
|
||||||
|
$this->assertFalse($this->instance->exists('foo'));
|
||||||
$this->instance->remove('foo');
|
$this->instance->remove('foo');
|
||||||
|
$this->assertFalse($this->instance->exists('foo'));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testNotExistsAfterClear() {
|
public function testNotExistsAfterClear() {
|
||||||
|
|
Loading…
Reference in New Issue