Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Tools / NVelocity / test / templates / equality.vm
blob39e85d43af21f774f031223060b5fd3ce0dd2149
1 #*
3 @test equality.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($user = "jason")
13 #set($login = false)
14 #set($count = 5)
16 #if ($user == "jason")
17     the user $user is logged in!
18 #end
21 #if ($count == 5)
22     the count is 5!
23 #end
25 #if ($login == false)
26     the user isn't logged in.
27 #end
29 #if ($count != 3)
30     \$count is not equal to 3
31 #end