2014-03-13 15:19:17 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2014 Thomas Müller <deepdiver@owncloud.com>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts a new session before each test execution
|
|
|
|
*/
|
|
|
|
class StartSessionListener implements PHPUnit_Framework_TestListener {
|
|
|
|
|
|
|
|
public function addError(PHPUnit_Framework_Test $test, Exception $e, $time) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function addFailure(PHPUnit_Framework_Test $test, PHPUnit_Framework_AssertionFailedError $e, $time) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function addIncompleteTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function addSkippedTest(PHPUnit_Framework_Test $test, Exception $e, $time) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function startTest(PHPUnit_Framework_Test $test) {
|
2014-03-14 17:16:20 +00:00
|
|
|
}
|
2014-03-13 15:19:17 +00:00
|
|
|
|
2014-03-14 17:16:20 +00:00
|
|
|
public function endTest(PHPUnit_Framework_Test $test, $time) {
|
2014-03-13 15:19:17 +00:00
|
|
|
// new session
|
|
|
|
\OC::$session = new \OC\Session\Memory('');
|
|
|
|
|
|
|
|
// load the version
|
|
|
|
OC_Util::getVersion();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function startTestSuite(PHPUnit_Framework_TestSuite $suite) {
|
|
|
|
}
|
|
|
|
|
|
|
|
public function endTestSuite(PHPUnit_Framework_TestSuite $suite) {
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|