Package org.apache.abdera.i18n.test.templates

Source Code of org.apache.abdera.i18n.test.templates.TestTemplate

package org.apache.abdera.i18n.test.templates;

import static org.junit.Assert.assertEquals;

import java.util.HashMap;
import java.util.Map;

import org.apache.abdera.i18n.templates.Template;

import org.junit.Test;

public class TestTemplate {
 
    @Test
    public void testTemplateNeg() {
        Template t = new Template("*http://cnn.com/{-neg|all|foo,bar}");
        Map m = new HashMap();
        m.put("foo", "value");
        String out = t.expand(m);

        assertEquals("*http://cnn.com/", out);
    }
}
TOP

Related Classes of org.apache.abdera.i18n.test.templates.TestTemplate

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.