public function testLoadXmlModelInformation()
 {
     $bimModelInformation = new BimModelInformation();
     $bimModelInformation->loadVariablesFromXml($this->modelInformation);
     $this->assertEquals("reference file created for the Basic FM Handover View", $bimModelInformation->getAuthorization());
     $this->assertEquals("Thomas Liebich", $bimModelInformation->getAuthor());
     $this->assertEquals(1296118479, $bimModelInformation->getChangeDate());
     $this->assertEquals("ViewDefinition [CoordinationView, FMHandOverView]", $bimModelInformation->getDescription());
     $this->assertEquals("AEC3", $bimModelInformation->getOrganization());
     $this->assertEquals("IFC text editor", $bimModelInformation->getOriginatingSystem());
     $this->assertEquals("IFC text editor", $bimModelInformation->getPreProcessor());
     $this->assertEquals(null, $bimModelInformation->getValDate());
     $this->assertEquals("IFC2X3", $bimModelInformation->getNativeSchema());
 }