Lines Matching defs:root

51             String root = System.getProperty ("test.src")+ "/docs";
56 HttpHandler h = new FileServerHandler (root);
72 t[0] = test (true, "http", root+"/test1", p1, "smallfile.txt", 23);
73 t[1] = test (true, "http", root+"/test1", p1, "largefile.txt", 2730088);
74 t[2] = test (true, "https", root+"/test1", p2, "smallfile.txt", 23);
75 t[3] = test (true, "https", root+"/test1", p2, "largefile.txt", 2730088);
76 t[4] = test (false, "http", root+"/test1", p1, "smallfile.txt", 23);
77 t[5] = test (false, "http", root+"/test1", p1, "largefile.txt", 2730088);
78 t[6] = test (false, "https", root+"/test1", p2, "smallfile.txt", 23);
79 t[7] = test (false, "https", root+"/test1", p2, "largefile.txt", 2730088);
80 t[8] = test (true, "http", root+"/test1", p1, "smallfile.txt", 23);
81 t[9] = test (true, "http", root+"/test1", p1, "largefile.txt", 2730088);
82 t[10] = test (true, "https", root+"/test1", p2, "smallfile.txt", 23);
83 t[11] = test (true, "https", root+"/test1", p2, "largefile.txt", 2730088);
84 t[12] = test (false, "http", root+"/test1", p1, "smallfile.txt", 23);
85 t[13] = test (false, "http", root+"/test1", p1, "largefile.txt", 2730088);
86 t[14] = test (false, "https", root+"/test1", p2, "smallfile.txt", 23);
87 t[15] = test (false, "https", root+"/test1", p2, "largefile.txt", 2730088);
109 static ClientThread test (boolean fixedLen, String protocol, String root, int port, String f, int size) throws Exception {
110 ClientThread t = new ClientThread (fixedLen, protocol, root, port, f, size);
121 String root;
126 ClientThread (boolean fixedLen, String protocol, String root, int port, String f, int size) {
129 this.root = root;
174 System.out.println ("root = "+root);
182 String orig = root + "/" + f;