new FileInfo("/serveonly.js", 0, 0, false, true, null, "/serveonly.js"),
new FileInfo("/bar.js", 0, 0, false, false, null, "bar.js"),
new FileInfo(unhandledPath, 0, 0, false, false, null, unhandledPath),
new FileInfo("http://somehost/bar.js", 0, 0, false, false, null, "http://somehost/bar.js")
),
new NullPathPrefix(), schemes, new Gson());
final List<String> paths = Lists.newArrayList();
testFileUtil.writeTestFiles(new HtmlWriter(new StringWriter(), new NullPathPrefix()) {
@Override
public HtmlWriter writeExternalScript(String path) {
paths.add(path);
return this;
}