Author: byron
Date: Tue Jan 20 05:34:00 2009
New Revision: 736019
URL: http://svn.apache.org/viewvc?rev=736019&view=rev
Log:
VELOCITY-667 test case for issue VELOCITY-667
Added:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity667TestCase.java
Added:
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity667TestCase.java
URL:
http://svn.apache.org/viewvc/velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity667TestCase.java?rev=736019&view=auto
==============================================================================
---
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity667TestCase.java
(added)
+++
velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity667TestCase.java
Tue Jan 20 05:34:00 2009
@@ -0,0 +1,40 @@
+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-667. Make "#macro" throws a parse exception
+ */
+public class Velocity667TestCase extends BaseEvalTestCase
+{
+ public Velocity667TestCase(String name)
+ {
+ super(name);
+ }
+
+ public void test667()
+ {
+ assertEvalExceptionAt("#macro", 1, 1);
+ assertEvalExceptionAt("#macro #macro", 1, 1);
+ }
+}