fitnesse.resources.templates.executionLog.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fitnesse Show documentation
Show all versions of fitnesse Show documentation
The fully integrated standalone wiki, and acceptance testing framework.
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