diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bookmark/LinkDBTest.php | 6 | ||||
-rw-r--r-- | tests/bookmark/LinkFilterTest.php (renamed from tests/LinkFilterTest.php) | 23 |
2 files changed, 17 insertions, 12 deletions
diff --git a/tests/bookmark/LinkDBTest.php b/tests/bookmark/LinkDBTest.php index f18a3155..65409e95 100644 --- a/tests/bookmark/LinkDBTest.php +++ b/tests/bookmark/LinkDBTest.php | |||
@@ -6,7 +6,7 @@ | |||
6 | namespace Shaarli\Bookmark; | 6 | namespace Shaarli\Bookmark; |
7 | 7 | ||
8 | use DateTime; | 8 | use DateTime; |
9 | use LinkNotFoundException; | 9 | use Shaarli\Bookmark\Exception\LinkNotFoundException; |
10 | use ReferenceLinkDB; | 10 | use ReferenceLinkDB; |
11 | use ReflectionClass; | 11 | use ReflectionClass; |
12 | use Shaarli; | 12 | use Shaarli; |
@@ -457,7 +457,7 @@ class LinkDBTest extends \PHPUnit\Framework\TestCase | |||
457 | /** | 457 | /** |
458 | * Test filterHash() with an invalid smallhash. | 458 | * Test filterHash() with an invalid smallhash. |
459 | * | 459 | * |
460 | * @expectedException LinkNotFoundException | 460 | * @expectedException \Shaarli\Bookmark\Exception\LinkNotFoundException |
461 | */ | 461 | */ |
462 | public function testFilterHashInValid1() | 462 | public function testFilterHashInValid1() |
463 | { | 463 | { |
@@ -468,7 +468,7 @@ class LinkDBTest extends \PHPUnit\Framework\TestCase | |||
468 | /** | 468 | /** |
469 | * Test filterHash() with an empty smallhash. | 469 | * Test filterHash() with an empty smallhash. |
470 | * | 470 | * |
471 | * @expectedException LinkNotFoundException | 471 | * @expectedException \Shaarli\Bookmark\Exception\LinkNotFoundException |
472 | */ | 472 | */ |
473 | public function testFilterHashInValid() | 473 | public function testFilterHashInValid() |
474 | { | 474 | { |
diff --git a/tests/LinkFilterTest.php b/tests/bookmark/LinkFilterTest.php index db28b1c4..808f8122 100644 --- a/tests/LinkFilterTest.php +++ b/tests/bookmark/LinkFilterTest.php | |||
@@ -1,13 +1,14 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | use Shaarli\Bookmark\LinkDB; | 3 | namespace Shaarli\Bookmark; |
4 | 4 | ||
5 | require_once 'application/LinkFilter.php'; | 5 | use Exception; |
6 | use ReferenceLinkDB; | ||
6 | 7 | ||
7 | /** | 8 | /** |
8 | * Class LinkFilterTest. | 9 | * Class LinkFilterTest. |
9 | */ | 10 | */ |
10 | class LinkFilterTest extends PHPUnit_Framework_TestCase | 11 | class LinkFilterTest extends \PHPUnit\Framework\TestCase |
11 | { | 12 | { |
12 | /** | 13 | /** |
13 | * @var string Test datastore path. | 14 | * @var string Test datastore path. |
@@ -29,7 +30,7 @@ class LinkFilterTest extends PHPUnit_Framework_TestCase | |||
29 | protected static $linkDB; | 30 | protected static $linkDB; |
30 | 31 | ||
31 | /** | 32 | /** |
32 | * Instanciate linkFilter with ReferenceLinkDB data. | 33 | * Instantiate linkFilter with ReferenceLinkDB data. |
33 | */ | 34 | */ |
34 | public static function setUpBeforeClass() | 35 | public static function setUpBeforeClass() |
35 | { | 36 | { |
@@ -81,10 +82,14 @@ class LinkFilterTest extends PHPUnit_Framework_TestCase | |||
81 | count( | 82 | count( |
82 | self::$linkFilter->filter( | 83 | self::$linkFilter->filter( |
83 | LinkFilter::$FILTER_TAG, | 84 | LinkFilter::$FILTER_TAG, |
84 | /*$request=*/'', | 85 | /*$request=*/ |
85 | /*$casesensitive=*/false, | 86 | '', |
86 | /*$visibility=*/'all', | 87 | /*$casesensitive=*/ |
87 | /*$untaggedonly=*/true | 88 | false, |
89 | /*$visibility=*/ | ||
90 | 'all', | ||
91 | /*$untaggedonly=*/ | ||
92 | true | ||
88 | ) | 93 | ) |
89 | ) | 94 | ) |
90 | ); | 95 | ); |
@@ -229,7 +234,7 @@ class LinkFilterTest extends PHPUnit_Framework_TestCase | |||
229 | /** | 234 | /** |
230 | * No link for this hash | 235 | * No link for this hash |
231 | * | 236 | * |
232 | * @expectedException LinkNotFoundException | 237 | * @expectedException \Shaarli\Bookmark\Exception\LinkNotFoundException |
233 | */ | 238 | */ |
234 | public function testFilterUnknownSmallHash() | 239 | public function testFilterUnknownSmallHash() |
235 | { | 240 | { |