2013-05-27 22:50:00 +00: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 13:38:20 +00:00
|
|
|
class MemoryTest extends Session {
|
2016-04-25 08:23:06 +00:00
|
|
|
|
2014-11-10 22:30:38 +00:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
2014-12-02 12:51:36 +00:00
|
|
|
$this->instance = new \OC\Session\Memory($this->getUniqueID());
|
2013-05-27 22:50:00 +00:00
|
|
|
}
|
2016-04-25 08:23:06 +00:00
|
|
|
|
|
|
|
/**
|
2016-05-20 13:38:20 +00:00
|
|
|
* @expectedException \OCP\Session\Exceptions\SessionNotAvailableException
|
2016-04-25 08:23:06 +00:00
|
|
|
*/
|
|
|
|
public function testThrowsExceptionOnGetId() {
|
|
|
|
$this->instance->getId();
|
|
|
|
}
|
|
|
|
|
2013-05-27 22:50:00 +00:00
|
|
|
}
|