diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-01-17 21:34:12 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-01-18 09:56:32 +0100 |
commit | e26e2060f5470ce8bf4c5973284bae07b8af170a (patch) | |
tree | adf8512f93f5559ba87d0c9931969ae4ebea7133 /tests/bootstrap.php | |
parent | cf92b4dd1521241eefc58eaf6dcd202cd83969d8 (diff) | |
download | Shaarli-e26e2060f5470ce8bf4c5973284bae07b8af170a.tar.gz Shaarli-e26e2060f5470ce8bf4c5973284bae07b8af170a.tar.zst Shaarli-e26e2060f5470ce8bf4c5973284bae07b8af170a.zip |
Add and update unit test for the new system (Bookmark + Service)
See #1307
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index d36d73cd..0afbcba6 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php | |||
@@ -4,3 +4,21 @@ require_once 'vendor/autoload.php'; | |||
4 | 4 | ||
5 | $conf = new \Shaarli\Config\ConfigManager('tests/utils/config/configJson'); | 5 | $conf = new \Shaarli\Config\ConfigManager('tests/utils/config/configJson'); |
6 | new \Shaarli\Languages('en', $conf); | 6 | new \Shaarli\Languages('en', $conf); |
7 | |||
8 | // is_iterable is only compatible with PHP 7.1+ | ||
9 | if (!function_exists('is_iterable')) { | ||
10 | function is_iterable($var) | ||
11 | { | ||
12 | return is_array($var) || $var instanceof \Traversable; | ||
13 | } | ||
14 | } | ||
15 | |||
16 | // TODO: remove this after fixing UT | ||
17 | require_once 'application/bookmark/LinkUtils.php'; | ||
18 | require_once 'application/Utils.php'; | ||
19 | require_once 'application/http/UrlUtils.php'; | ||
20 | require_once 'application/http/HttpUtils.php'; | ||
21 | require_once 'application/feed/Cache.php'; | ||
22 | require_once 'tests/utils/ReferenceLinkDB.php'; | ||
23 | require_once 'tests/utils/ReferenceHistory.php'; | ||
24 | require_once 'tests/utils/FakeBookmarkService.php'; | ||