Author: byron
Date: Fri Jan 23 09:08:54 2009
New Revision: 737098
URL: http://svn.apache.org/viewvc?rev=737098&view=rev
Log:
VELOCITY-682 Test case for this issue
Added:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity682TestCase.java
Added:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity682TestCase.java
URL:
http://svn.apache.org/viewvc/velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity682TestCase.java?rev=737098&view=auto
==============================================================================
---
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity682TestCase.java
(added)
+++
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity682TestCase.java
Fri Jan 23 09:08:54 2009
@@ -0,0 +1,41 @@
+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;
+import org.apache.velocity.runtime.RuntimeConstants;
+
+/**
+ * This class tests VELOCITY-682.
+ */
+public class Velocity682TestCase extends BaseEvalTestCase
+{
+ public Velocity682TestCase(String name)
+ {
+ super(name);
+ DEBUG=true;
+ }
+
+ public void test682()
+ {
+ engine.setProperty(RuntimeConstants.VM_PERM_INLINE_LOCAL, true);
+ //assertEvalEquals("foo1foo2", "#macro(eval
$e)#evaluate($e)#end#eval('foo1')#eval('foo2')");
+ }
+}