Applied patch from Jan Limpens 'ReflectionBasedDictionaryAdapter needs to check if...
[castle.git] / Tools / NVelocity / test / templates / arithmetic.vm
blob09748b73e3db0715a416e4f575928ca994cb327e
1 #**
3 @test arithmetic.vm
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.
12 #set($foo = 5)
13 #set($foo = $foo + 1)
14 $foo
16 #set($foo = $foo - 1)
17 $foo
19 #set($foo = $foo * 2)
20 $foo
22 #set($foo = $foo / 2)
23 $foo
25 And the whole thing again with inline set statements
27 #set( $foo = 5)
28 #set( $foo = $foo + 1)
29 $foo
31 #set ( $foo = $foo - 1 )
32 $foo
34 #set( $foo = $foo * 2)
35 $foo
37 #set ($foo = $foo / 2)
38 $foo