FileDocCategorySizeDatePackage
TestWebData.javaAPI DocAndroid 1.5 API3941Wed May 06 22:42:02 BST 2009android.core

TestWebData

public 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[]
testParams
List of static test cases for use with test server
public static String[]
testServerResponse
List 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;
  
Methods Summary