aboutsummaryrefslogtreecommitdiff
path: root/velocity-engine-core/src/test/java/org/apache/velocity
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2018-10-13 14:52:28 +0000
committerClaude Brisson <cbrisson@apache.org>2018-10-13 14:52:28 +0000
commit6ba4f7ea860fee7e0dc0c23d7ba7c6f2b2e92ef4 (patch)
tree2a672d86378952b49d1fe80b9ca8f0e679612748 /velocity-engine-core/src/test/java/org/apache/velocity
parentc471096558bf0d657e2a2efdced0267a1d36b5c1 (diff)
parentc329523e762e781a61a7aba340c4dcf039c156d2 (diff)
downloadapache-velocity-engine-6ba4f7ea860fee7e0dc0c23d7ba7c6f2b2e92ef4.tar.gz
[VELOCITY-898] WIP plus merge from trunk
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/branches/VELOCITY-898@1843764 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'velocity-engine-core/src/test/java/org/apache/velocity')
-rw-r--r--velocity-engine-core/src/test/java/org/apache/velocity/test/AlternateValuesTestCase.java60
1 files changed, 60 insertions, 0 deletions
diff --git a/velocity-engine-core/src/test/java/org/apache/velocity/test/AlternateValuesTestCase.java b/velocity-engine-core/src/test/java/org/apache/velocity/test/AlternateValuesTestCase.java
new file mode 100644
index 00000000..04afdac3
--- /dev/null
+++ b/velocity-engine-core/src/test/java/org/apache/velocity/test/AlternateValuesTestCase.java
@@ -0,0 +1,60 @@
+package org.apache.velocity.test;
+
+/*
+ * 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 junit.framework.TestCase;
+import org.apache.velocity.VelocityContext;
+import org.apache.velocity.app.Velocity;
+import org.apache.velocity.app.VelocityEngine;
+import org.apache.velocity.runtime.RuntimeConstants;
+import org.apache.velocity.runtime.resource.loader.StringResourceLoader;
+import org.apache.velocity.runtime.resource.util.StringResourceRepository;
+import org.apache.velocity.test.misc.TestLogger;
+
+import java.io.File;
+import java.io.IOException;
+import java.io.StringWriter;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.Locale;
+
+/**
+ * Base test case that provides utility methods for
+ * the rest of the tests.
+ *
+ * @author <a href="mailto:dlr@finemaltcoding.com">Daniel Rall</a>
+ * @author Nathan Bubna
+ * @version $Id$
+ */
+public class AlternateValuesTestCase extends BaseTestCase
+{
+ public AlternateValuesTestCase(String name)
+ {
+ super(name);
+ }
+
+ public void testDefault()
+ {
+ assertEvalEquals("<foo>", "<${foo|$foo}>");
+ assertEvalEquals("bar", "#set($bar='bar')${foo|$bar}");
+ }
+
+}