5 This template is used for Velocity regression testing.
6 If you alter this template make sure you change the
7 corresponding comparison file so that the regression
8 test doesn't fail incorrectly.
15 \$foo is greater then 1
23 \$foo is great than or equal to 5
27 \$foo is less than or equal to 5
123 #if( !($null && $null) )
167 #if( $str == $nonexistantreference )
185 #if( $bool == false )
210 #if( $nonexistant > 0 )
228 #if( $nonexistant >= 0 )
246 #if( $nonexistant < 10 )
264 #if( $nonexistant <= 10 )
270 ----------------------
271 goofy but legal stuff
272 ----------------------
273 #set($lala = ( false || true ) )
274 Should equal true : $lala
276 #set($fofo = ( true && true ) )
277 Should equal true : $fofo
279 #set($fofo = ( true && ( false || true ) ) )
280 Should equal true : $fofo
282 #set($fofo = ( ($t || $f) && $t))
283 Should equal true : $fofo