1 7 package com.inversoft.junit.internal; 8 9 10 19 public interface Constants 20 { 21 24 String TEST_METHOD_PREFIX = "test"; 25 26 31 String RESULT_PARAM = "_testframework_result"; 32 33 36 String URL_CLASS_PARAM = "_testframework_class_name"; 37 38 41 String URL_METHOD_PARAM = "_testframework_method_name"; 42 43 46 String URL_CONTEXT_PARAM = "_testframework_context"; 47 48 51 String URL_PATHINFO_PARAM = "_testframework_pathInfo"; 52 53 56 String URL_PROTOCOL_PARAM = "_testframework_protocol"; 57 58 61 String URL_QUERYSTRING_PARAM = "_testframework_querystring"; 62 63 66 String URL_SERVERNAME_PARAM = "_testframework_serverName"; 67 68 71 String URL_SERVLETPATH_PARAM = "_testframework_servletPath"; 72 73 77 String URL_REQUEST_TYPE_PARAM = "_testframework_requestType"; 78 79 83 String PAGE_CONTEXT_KEY = "_testframework_pageContext"; 84 85 86 90 String REQUEST_TYPE_TEST = "test"; 91 92 96 String REQUEST_TYPE_RESULT = "result"; 97 } 98 | Popular Tags |