public function testLiftImportMerge_ZipFile2LiftAndOddFolder_Error()
 {
     $zipFilePath = $this->environ->copyTestUploadFile(TestPath . 'common/TestLex2ProjectsOddFolder.zip');
     $project = $this->environ->createProject(SF_TESTPROJECT, SF_TESTPROJECTCODE);
     $importer = LiftImport::get()->importZip($zipFilePath, $project);
     $report = $importer->getReport();
     $reportStr = $report->toString();
     $this->assertTrue($report->hasError(), 'should have NodeError');
     $this->assertPattern("/unhandled LIFT file/", $reportStr);
     $this->assertPattern("/unhandled subfolder 'OddFolder'/", $reportStr);
 }