def testExecute(self):
     """
     """
     self.run()
     plugin = self.getPlugin()
     ################################################################################
     # Compare XSDataResults
     ################################################################################
     strExpectedOutput = self.readAndParseFile(self.getReferenceDataOutputFile())
     EDVerbose.DEBUG("Checking obtained result...")
     xsDataResultReference = XSDataResultMatrixInvert.parseString(strExpectedOutput)
     xsDataResultObtained = plugin.getDataOutput()
     EDAssert.strAlmostEqual(
         xsDataResultReference.marshal(),
         xsDataResultObtained.marshal(),
         _fStrSimilar=0.99,
         _strComment="XSDataResult output are the same",
     )
 def testExecute(self):
     """
     """
     self.run()
     plugin = self.getPlugin()
     ################################################################################
     # Compare XSDataResults
     ################################################################################
     strExpectedOutput = self.readAndParseFile(
         self.getReferenceDataOutputFile())
     EDVerbose.DEBUG("Checking obtained result...")
     xsDataResultReference = XSDataResultMatrixInvert.parseString(
         strExpectedOutput)
     xsDataResultObtained = plugin.getDataOutput()
     EDAssert.strAlmostEqual(xsDataResultReference.marshal(),
                             xsDataResultObtained.marshal(),
                             _fStrSimilar=0.99,
                             _strComment="XSDataResult output are the same")