forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
package com.fanruan.api.util; |
|
|
|
import com.fanruan.api.Prepare; |
|
import org.junit.Assert; |
|
import org.junit.Test; |
|
|
|
import java.util.HashMap; |
|
import java.util.Map; |
|
|
|
import static org.junit.Assert.*; |
|
|
|
/** |
|
* @author richie |
|
* @version 10.0 |
|
* Created by richie on 2019-08-27 |
|
*/ |
|
public class RenderKitTest extends Prepare { |
|
|
|
@Test |
|
public void renderParameter4Tpl() throws Exception { |
|
Map<String, Object> map = new HashMap<>(); |
|
map.put("age", 20); |
|
map.put("name", "Alex"); |
|
map.put("salary", 100); |
|
String text = "${name} is ${age} years old, he earned ${salary} dollars per month."; |
|
Assert.assertEquals("Alex is 20 years old, he earned 100 dollars per month.", RenderKit.renderParameter4Tpl(text, map)); |
|
} |
|
|
|
@Test |
|
public void render() throws Exception{ |
|
String string = new String("a"); |
|
Calculator calculator = new Calculator("b"); |
|
Assert.assertEquals("a", RenderKit.render(string)); |
|
Assert.assertEquals("b", RenderKit.render(calculator)); |
|
} |
|
}
|
|
|