示例#1
0
	def outcomeIsValid(self):
		"""
		Return whether this failure has a defined outcome file path and whether or not there exists a file at that
		path.
		:return:
		"""
		return self.outcome and Utils.checkIsFile(self.outcome)
示例#2
0
	def expectedIsValid(self):
		"""
		Return whether this failure has a defined expected file path and whether or not there exists a file at that
		path.
		:return:
		"""
		return self.expected and Utils.checkIsFile(self.expected)
示例#3
0
	def networkLogIsValid(self):
		"""
		Return whether this failure has a defined network log path and whether or not there exists a file at that
		path.
		:return:
		"""
		return self.networkLog and Utils.checkIsFile(self.networkLog)