1
0
mirror of https://github.com/danog/class-finder.git synced 2024-11-26 12:04:42 +01:00

Remove incorrect test case; Fix incorrect namespace

This commit is contained in:
Hayden Pierce 2019-03-02 11:49:31 -06:00
parent e84a97444f
commit d005859a8c
2 changed files with 2 additions and 7 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace TestApp1;
namespace TestApp2;
require_once __DIR__ . '/vendor/autoload.php';

View File

@ -1,6 +1,6 @@
<?php
namespace TestApp1;
namespace TestApp2;
require_once __DIR__ . '/vendor/autoload.php';
@ -58,11 +58,6 @@ class PSR4NoAutoloadTest extends \PHPUnit_Framework_TestCase
'HaydenPierce\SandboxAppMulti\Zit'
),
'ClassFinder should be able to find 3rd party classes when a provided namespace root maps to multiple directories (Example: "HaydenPierce\\SandboxAppMulti\\": ["multi/Bop", "multi/Bot"] )'
),
array(
'TestApp1\Foo\Empty',
array(),
'ClassFinder should return an empty array if the namespace is known, but contains no classes.'
)
);
}