Definition at line 9 of file CompareJetTestFiles.py.
◆ __init__()
def python.CompareJetTestFiles.CompareJetTestFiles.__init__ |
( |
|
self, |
|
|
|
argdict = {} |
|
) |
| |
Definition at line 10 of file CompareJetTestFiles.py.
11 testIdentifier = argdict.get(
'testIdentifierObj')
12 self.refFile = argdict.get(
'ReferenceFile')
13 self.newFile = argdict.get(
'NewFile')
14 logFile = argdict.get(
'LogFile')
18 cmd = os.path.join( JetValidation.__path__[0],
"CompareJetTestFilesExec.py") +
" %s %s" % (self.refFile,self.newFile)
19 ExeRunnerBase.__init__(self,cmd,testIdentifier,logFile)
◆ run()
def python.CompareJetTestFiles.CompareJetTestFiles.run |
( |
|
self | ) |
|
Definition at line 21 of file CompareJetTestFiles.py.
22 bad_refFile =
not os.path.exists(self.refFile)
23 bad_newFile =
not os.path.exists(self.newFile)
25 msgTpl =
'%s: file does not exist, not running'
27 msg += msgTpl % self.refFile
29 msg += msgTpl % self.newFile
34 self.testResults.
append(tr)
44 ExeRunnerBase.run(self)
◆ newFile
python.CompareJetTestFiles.CompareJetTestFiles.newFile |
◆ refFile
python.CompareJetTestFiles.CompareJetTestFiles.refFile |
The documentation for this class was generated from the following file: