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

fitnesse.resources.templates.executionLog.vm Maven / Gradle / Ivy

The newest version!
$currentDate FitNesse Version: $version Page History
#if( $logs.empty )

No execution log available.

#end #foreach( $log in $logs ) #if( $log.testSystemName )

${log.testSystemName}

Test page:$viewLocation
Command:#escape($log.command)
Exit code:$log.exitCode
Time elapsed:$runTime seconds
#else

This test ran as part of a suite.

#end #set( $stdOut = $log.stdOut) #if( $stdOut != '' )

Standard Output:

#escape($stdOut)
#end #set( $stdErr = $log.stdErr) #if( $stdErr != '' )

Standard Error:

#escape($stdErr)
#end #if( !$log.exceptions.empty )

Internal Exception#if( $log.exceptions.size() > 1)s#end:

#foreach( $exception in $log.exceptions)
#escape($exception.message)
#end #end #end




© 2015 - 2025 Weber Informatics LLC | Privacy Policy