Fix unit tests

remotes/origin/throw-loginexception-failed-login
Roeland Jago Douma 8 years ago committed by Vincent Petry
parent c9ad60defc
commit 54b637e83c
No known key found for this signature in database
GPG Key ID: AF8F9EFC56562186

@ -19,18 +19,6 @@ class AutoLoaderTest extends TestCase {
$this->loader = new \OC\AutoLoader([]);
}
public function testLeadingSlashOnClassName() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
], $this->loader->findClass('\OCP\Files\Storage\Local'));
}
public function testNoLeadingSlashOnClassName() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/files/storage/local.php',
], $this->loader->findClass('OCP\Files\Storage\Local'));
}
public function testLegacyPath() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/private/legacy/files.php',
@ -50,9 +38,7 @@ class AutoLoaderTest extends TestCase {
}
public function testLoadPublicNamespace() {
$this->assertEquals([
\OC::$SERVERROOT . '/lib/public/foo/bar.php',
], $this->loader->findClass('OCP\Foo\Bar'));
$this->assertEquals([], $this->loader->findClass('OCP\Foo\Bar'));
}
public function testLoadAppNamespace() {

Loading…
Cancel
Save