Index: test/org/apache/taglibs/standard/functions/TestEndsWith.java =================================================================== --- test/org/apache/taglibs/standard/functions/TestEndsWith.java (revision 0) +++ test/org/apache/taglibs/standard/functions/TestEndsWith.java (revision 0) @@ -0,0 +1,47 @@ +/* + * Copyright 1999,2004 The Apache Software Foundation. + * + * Licensed 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. + */ + +package org.apache.taglibs.standard.functions; + +import javax.servlet.jsp.*; +import org.apache.cactus.*; +import org.apache.taglibs.standard.testutil.TestUtil; + +public class TestEndsWith + extends JspTestCase { +// private SetTag setTag = null; + + public TestEndsWith(String name) { + super(name); + } + + protected void setUp() throws Exception { + super.setUp(); + } + + protected void tearDown() throws Exception { + super.tearDown(); + } + + public void testEndsWith() throws Exception { + String var = "var1"; + String toInclude = TestUtil.getTestJsp(this); + pageContext.include(toInclude); + Boolean actual = (Boolean) pageContext.getAttribute(var, + PageContext.APPLICATION_SCOPE); + assertEquals(Boolean.TRUE, actual); + } +} Index: test/web/org/apache/taglibs/standard/functions/TestEndsWith.jsp =================================================================== --- test/web/org/apache/taglibs/standard/functions/TestEndsWith.jsp (revision 0) +++ test/web/org/apache/taglibs/standard/functions/TestEndsWith.jsp (revision 0) @@ -0,0 +1,5 @@ +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="fm" uri="http://java.sun.com/jsp/jstl/functions" %> + + + Index: build-tests.xml =================================================================== --- build-tests.xml (revision 474536) +++ build-tests.xml (working copy) @@ -344,6 +344,7 @@ +