EDITest\AnalyserTest::testGetSegmentStructure PHP Method

testGetSegmentStructure() public method

    public function testGetSegmentStructure()
    {
        $segmentsXml = $this->mapping->getSegments();
        $expected = (include __DIR__ . "/../files/segments.php");
        $this->analyser->loadSegmentsXml($segmentsXml);
        $actual = $this->analyser->segments;
        $this->assertEquals($expected, $actual, "Unable to get all segment structures as array");
    }