TestWebDatapublic class TestWebData extends Object Represents test data used by the Request API tests |
Fields Summary |
---|
public static final byte[] | test1 | public static final byte[] | test2 | public static final String | postContent | public static final byte[] | tests | public static TestWebData[] | testParamsList of static test cases for use with test server | public static String[] | testServerResponseList of response strings for use by the test server | public static final int | REDIRECT_301 | public static final int | REDIRECT_302 | public static final int | REDIRECT_303 | public static final int | REDIRECT_307 | public int | testLength | public int | testLastModified | public String | testName | public String | testType | public boolean | testDir |
Constructors Summary |
---|
TestWebData(int length, int lastModified, String name, String type, boolean isDir)Creates a data package with information used by the server when responding
to requests
testLength = length;
testLastModified = lastModified;
testName = name;
testType = type;
testDir = isDir;
|
|