You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2008/08/21 00:11:53 UTC

svn commit: r687487 - /velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java

Author: nbubna
Date: Wed Aug 20 15:11:53 2008
New Revision: 687487

URL: http://svn.apache.org/viewvc?rev=687487&view=rev
Log:
VELOCITY-579 test

Added:
    velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java   (with props)

Added: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java?rev=687487&view=auto
==============================================================================
--- velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java (added)
+++ velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java Wed Aug 20 15:11:53 2008
@@ -0,0 +1,62 @@
+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-579.
+ */
+public class Velocity579TestCase extends BaseEvalTestCase
+{
+    public Velocity579TestCase(String name)
+    {
+       super(name);
+    }
+
+    public void testPublicMethodInPrivateImplOfPublicInterface()
+    {
+        context.put("foo", new Foobar());
+        assertEvalEquals("bar", "$foo.foo('bar')");
+        assertEvalEquals("$foo.bar()", "$foo.bar()");
+    }
+
+    public static interface Foo
+    {
+        String foo(String s);
+    }
+
+    private static abstract class FooImpl implements Foo
+    {
+        public String foo(String s)
+        {
+            return s == null ? "foo" : s;
+        }
+    }
+
+    private static class Foobar extends FooImpl
+    {
+        public String bar()
+        {
+            return "bar";
+        }
+    }
+
+}

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java
------------------------------------------------------------------------------
    svn:executable = *

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java
------------------------------------------------------------------------------
    svn:keywords = Revision

Propchange: velocity/engine/trunk/src/test/org/apache/velocity/test/issues/Velocity579TestCase.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain