Lines Matching full:new
16 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
17 $server = new Server($root);
18 $httpRequest = new HTTP\Request('GET', '/bar', ['If-Match' => '*']);
19 $httpResponse = new HTTP\Response();
28 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
29 $server = new Server($root);
30 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '*']);
31 $httpResponse = new HTTP\Response();
41 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
42 $server = new Server($root);
43 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '1234']);
44 $httpResponse = new HTTP\Response();
53 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
54 $server = new Server($root);
55 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '"abc123"']);
56 $httpResponse = new HTTP\Response();
68 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
69 $server = new Server($root);
70 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '\\"abc123\\"']);
71 $httpResponse = new HTTP\Response();
80 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
81 $server = new Server($root);
82 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '"hellothere", "abc123"']);
83 $httpResponse = new HTTP\Response();
92 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
93 $server = new Server($root);
94 $httpRequest = new HTTP\Request('GET', '/bar', ['If-None-Match' => '*']);
95 $httpResponse = new HTTP\Response();
105 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
106 $server = new Server($root);
107 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '*']);
108 $httpResponse = new HTTP\Response();
117 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
118 $server = new Server($root);
119 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"1234"']);
120 $httpResponse = new HTTP\Response();
129 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
130 $server = new Server($root);
131 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"1234", "5678"']);
132 $httpResponse = new HTTP\Response();
142 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
143 $server = new Server($root);
144 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"abc123"']);
145 $httpResponse = new HTTP\Response();
155 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
156 $server = new Server($root);
157 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"1234, "abc123"']);
158 $httpResponse = new HTTP\Response();
167 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
168 $server = new Server($root);
169 $httpRequest = new HTTP\Request('GET', '/foo', ['If-None-Match' => '"abc123"']);
170 $server->httpResponse = new HTTP\ResponseMock();
183 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
184 $server = new Server($root);
185 $server->sapi = new HTTP\SapiMock();
187 $httpRequest = new HTTP\Request('GET', '/foo', ['If-None-Match' => '"abc123"']);
189 $server->httpResponse = new HTTP\ResponseMock();
207 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
208 $server = new Server($root);
213 $server->httpResponse = new HTTP\ResponseMock();
228 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
229 $server = new Server($root);
236 $httpResponse = new HTTP\ResponseMock();
245 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
246 $server = new Server($root);
252 $httpResponse = new HTTP\ResponseMock();
263 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
264 $server = new Server($root);
269 $httpResponse = new HTTP\ResponseMock();
279 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
280 $server = new Server($root);
285 $httpResponse = new HTTP\Response();
296 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
297 $server = new Server($root);
302 $httpResponse = new HTTP\ResponseMock();
311 $root = new SimpleCollection('root',array(new ServerPreconditionsNode()));
312 $server = new Server($root);
317 $httpResponse = new HTTP\ResponseMock();