/**
* @internal
*/
class AppLoaderTest extends TestCase
{ use AppSystemTestBehaviour;
use IntegrationTestBehaviour;
public function testLoad(): void
{ $appLoader =
$this->
getAppLoader(__DIR__ . '/../Manifest/_fixtures'
);
$manifests =
$appLoader->
load();
static::
assertCount(10,
$manifests);
static::
assertInstanceOf(Manifest::
class,
$manifests['minimal'
]);
} public function testLoadIgnoresInvalid(): void
{ $appLoader =
$this->
getAppLoader(__DIR__ . '/../Manifest/_fixtures/invalid'
);