Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: libadblockplus-android-tests/src/org/adblockplus/libadblockplus/tests/UpdaterTest.java

Issue 29526696: Issue 5556 - remove WebRequest setter (Closed) Base URL: github.com:abby-sergz/libadblockplus-android.git
Patch Set: Created Aug. 24, 2017, 5:24 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * This file is part of Adblock Plus <https://adblockplus.org/>, 2 * This file is part of Adblock Plus <https://adblockplus.org/>,
3 * Copyright (C) 2006-present eyeo GmbH 3 * Copyright (C) 2006-present eyeo GmbH
4 * 4 *
5 * Adblock Plus is free software: you can redistribute it and/or modify 5 * Adblock Plus is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 3 as 6 * it under the terms of the GNU General Public License version 3 as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
8 * 8 *
9 * Adblock Plus is distributed in the hope that it will be useful, 9 * Adblock Plus is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 22 matching lines...) Expand all
33 protected void setUp() throws Exception 33 protected void setUp() throws Exception
34 { 34 {
35 super.setUp(); 35 super.setUp();
36 36
37 AppInfo appInfo = AppInfo 37 AppInfo appInfo = AppInfo
38 .builder() 38 .builder()
39 .setName("test") 39 .setName("test")
40 .setVersion("1.0.1") 40 .setVersion("1.0.1")
41 .build(); 41 .build();
42 42
43 JsEngine jsEngine = new JsEngine(appInfo);
44 mockWebRequest = new MockWebRequest(); 43 mockWebRequest = new MockWebRequest();
45 jsEngine.setWebRequest(mockWebRequest); 44 JsEngine jsEngine = new JsEngine(appInfo, mockWebRequest);
46 jsEngine.setDefaultFileSystem(getContext().getFilesDir().getAbsolutePath()); 45 jsEngine.setDefaultFileSystem(getContext().getFilesDir().getAbsolutePath());
47 46
48 filterEngine = new FilterEngine(jsEngine); 47 filterEngine = new FilterEngine(jsEngine);
49 } 48 }
50 } 49 }
OLDNEW

Powered by Google App Engine
This is Rietveld