Platformsh\Cli\Tests\LocalApplicationTest::testGetAppConfigNested PHP Метод

testGetAppConfigNested() публичный Метод

    public function testGetAppConfigNested()
    {
        $fakeAppRoot = 'tests/data/repositories/multiple/nest/nested';
        $app = new LocalApplication($fakeAppRoot);
        $config = $app->getConfig();
        $this->assertEquals(['name' => 'nested1'], $config);
        $this->assertEquals('nested1', $app->getName());
        $this->assertEquals('nested1', $app->getId());
    }