Neos\Neos\Tests\Functional\Domain\Service\SiteImportExportServiceTest::exportingAPreviouslyImportedSiteLeadsToTheSameStructure PHP Method

exportingAPreviouslyImportedSiteLeadsToTheSameStructure() public method

    public function exportingAPreviouslyImportedSiteLeadsToTheSameStructure()
    {
        $expectedResult = file_get_contents(__DIR__ . '/Fixtures/Sites.xml');
        $actualResult = $this->siteExportService->export(array($this->importedSite), true);
        $this->assertEquals($expectedResult, $actualResult);
    }