예제 #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)