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