websupport.java
来自「webwork source」· Java 代码 · 共 30 行
JAVA
30 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?