From 70f09fcfc5e3ebc8cbcb15803fdac50d1c53f16b Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 6 Sep 2018 22:31:25 -0400 Subject: remove legacy Test --- java/src/main/java/org/pablotron/luigi/Test.java | 57 ------------------------ 1 file changed, 57 deletions(-) delete mode 100644 java/src/main/java/org/pablotron/luigi/Test.java diff --git a/java/src/main/java/org/pablotron/luigi/Test.java b/java/src/main/java/org/pablotron/luigi/Test.java deleted file mode 100644 index 3d25c13..0000000 --- a/java/src/main/java/org/pablotron/luigi/Test.java +++ /dev/null @@ -1,57 +0,0 @@ -package org.pablotron.luigi; - -import java.util.Map; -import java.util.HashMap; - -import org.pablotron.luigi.errors.LuigiError; -import org.pablotron.luigi.Filter; -import org.pablotron.luigi.Template; -import org.pablotron.luigi.Cache; - -public final class Test { - // test template - private static final String TEMPLATE = - "test basic: hello %{name}\n" + - "test filter: hello %{name | uc}\n" + - "test custom: %{name | custom | uc | lc}\n" + - "test custom_with_arg: %{name | custom_with_arg hello}\n"; - - // test template cache - private static final Cache cache = new Cache(new HashMap() {{ - put("test-template", TEMPLATE); - }}); - - // test arguments - private static final Map args = new HashMap() {{ - put("name", "paul"); - }}; - - // custom filters - private static final Map filters = new HashMap() {{ - // add custom filter - put("custom", new Filter.Handler() { - public String filter(String val, String args[], Map row) { - return "custom"; - } - }); - - // add custom filter with argument - put("custom_with_arg", new Filter.Handler() { - public String filter(String val, String args[], Map row) { - return (args.length > 0) ? args[0] : "custom"; - } - }); - }}; - - public static void main(String params[]) throws Exception { - // add custom filters - Filter.FILTERS.putAll(filters); - - // create and run template - final Template t = new Template(TEMPLATE); - System.out.print(t.run(args)); - - // run cache - System.out.print(cache.run("test-template", args)); - } -}; -- cgit v1.2.3