📄 websupport.java
字号:
/* * WebWork, Web Application Framework * * Distributable under Apache license. * See terms of license at opensource.org */package webwork.view;import webwork.TestCaseSupport;/** * @author Maurice C. Parker (maurice@vineyardenterprise.com) */public class WebSupport extends TestCaseSupport { protected final static String TEST_SERVER = System.getProperty("test.server", "http://localhost:8000"); protected final static String TEST_CONTEXT = System.getProperty("test.context", "/webwork/"); protected final static String TEST_HOME = TEST_SERVER + TEST_CONTEXT; protected final static String TEST_PASSED_TITLE = "Automated Test Passed"; public WebSupport() { super(); } public WebSupport(String testName) { super(testName); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -