Ejemplo n.º 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)
Ejemplo n.º 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)
Ejemplo n.º 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)