All Downloads are FREE. Search and download functionalities are using the official Maven repository.

reporter.templates.report.supervision.vm Maven / Gradle / Ivy

There is a newer version: 5.1.13
Show newest version

#set($success = $errors==0 && $failures==0)
#set($stepNumber = $testSteps.size() - 1)
#set($startTime = $testSteps.get(0).getStartDate().getTime())
#set($totalDuration = ($testSteps.get($stepNumber).getStartDate().getTime() - $startTime) / 1000.0)


	
#if ($stacktrace)
		
	#foreach ($stackline in $stacktrace)
			$stackline
	#end
		
#end
	
	
#foreach ($testStep in $testSteps)
#set($stepDuration = $testStep.getDuration() / 1000.0)
#set($stepTime = $testStep.getStartDate().getTime() - $startTime)
		
			$stepTime
            $testStep.getName()
            
#foreach ($action in $testStep.getStepActions())
 #if (${action.class.name.equals("com.seleniumtests.reporter.logger.TestValue")})
            	
 #end
#end
            
        
#end
	




© 2015 - 2025 Weber Informatics LLC | Privacy Policy