2013-05-27 18:50:00 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace Test\Session;
|
|
|
|
|
|
2016-05-20 09:38:20 -04:00
|
|
|
class MemoryTest extends Session {
|
2019-11-21 10:40:38 -05:00
|
|
|
protected function setUp(): void {
|
2014-11-10 17:30:38 -05:00
|
|
|
parent::setUp();
|
2024-06-25 09:16:40 -04:00
|
|
|
$this->instance = new \OC\Session\Memory();
|
2013-05-27 18:50:00 -04:00
|
|
|
}
|
2016-04-25 04:23:06 -04:00
|
|
|
|
2024-06-25 09:16:40 -04:00
|
|
|
|
2016-04-25 04:23:06 -04:00
|
|
|
public function testThrowsExceptionOnGetId() {
|
2019-11-27 09:27:18 -05:00
|
|
|
$this->expectException(\OCP\Session\Exceptions\SessionNotAvailableException::class);
|
|
|
|
|
|
2016-04-25 04:23:06 -04:00
|
|
|
$this->instance->getId();
|
|
|
|
|
}
|
2013-05-27 18:50:00 -04:00
|
|
|
}
|