📄 templatecontexttest.java
字号:
package cn.myapps.util.text;
import junit.framework.TestCase;
public class TemplateContextTest extends TestCase {
/*
* Test method for 'cn.myapps.util.text.TemplateContext.parse(String)'
*/
public void testParse() {
String text = "${key} = helloworld";
TemplateContext context = TemplateContext.parse(text);
context.putParams("key","helloworld");
System.out.println(context.toText());
assertEquals(context.toText(), "helloworld = helloworld");
text = "$$${key} = helloworld;${key} = helloworld;${key} = helloworld$$";
context = TemplateContext.parse(text);
context.putParams("key","helloworld");
System.out.println(context.toText());
assertEquals(context.toText(), "$$helloworld = helloworld;helloworld = helloworld;helloworld = helloworld$$");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -