Author: nbubna
Date: Tue Sep 2 23:03:31 2008
New Revision: 691521
URL: http://svn.apache.org/viewvc?rev=691521&view=rev
Log:
VELOCITY-532 add regression test case
Added:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
(with props)
Added:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
URL:
http://svn.apache.org/viewvc/velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java?rev=691521&view=auto
==============================================================================
---
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
(added)
+++
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
Tue Sep 2 23:03:31 2008
@@ -0,0 +1,52 @@
+package org.apache.velocity.test.issues;
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import org.apache.velocity.test.BaseEvalTestCase;
+
+/**
+ * This class tests VELOCITY-532.
+ */
+public class Velocity532TestCase extends BaseEvalTestCase
+{
+ public Velocity532TestCase(String name)
+ {
+ super(name);
+ }
+
+ public void test532()
+ {
+ String template = "#macro( test )$velocityCount#end"+
+ "#foreach( $i in [1..5] )#test()#end";
+ assertEvalEquals("12345", template);
+ }
+
+ public void test532b()
+ {
+ // try something a little more like Matt's example
+ String template = "#macro( test $baz )"+
+ "#if( $foo == $null )"+
+ "#if( $velocityCount == 3 )bar#end"+
+ "#end#end"+
+ "#foreach( $i in [1..5] )#test($i)#end";
+ assertEvalEquals("bar", template);
+ }
+
+}
Propchange:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
------------------------------------------------------------------------------
svn:executable = *
Propchange:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
------------------------------------------------------------------------------
svn:keywords = Revision
Propchange:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity532TestCase.java
------------------------------------------------------------------------------
svn:mime-type = text/plain