From f3d2f257946e2a3c8791c1ba99b379acbe934fec Mon Sep 17 00:00:00 2001 From: VirtualTam <virtualtam@flibidi.net> Date: Sun, 2 Dec 2018 23:31:40 +0100 Subject: namespacing: \Shaarli\Exceptions\IOException Signed-off-by: VirtualTam <virtualtam@flibidi.net> --- tests/FileUtilsTest.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tests/FileUtilsTest.php') diff --git a/tests/FileUtilsTest.php b/tests/FileUtilsTest.php index d764e495..9596dba9 100644 --- a/tests/FileUtilsTest.php +++ b/tests/FileUtilsTest.php @@ -1,5 +1,7 @@ <?php +use Shaarli\Exceptions\IOException; + require_once 'application/FileUtils.php'; /** @@ -48,7 +50,7 @@ class FileUtilsTest extends PHPUnit_Framework_TestCase /** * File not writable: raise an exception. * - * @expectedException IOException + * @expectedException Shaarli\Exceptions\IOException * @expectedExceptionMessage Error accessing "sandbox/flat.db" */ public function testWriteWithoutPermission() @@ -61,7 +63,7 @@ class FileUtilsTest extends PHPUnit_Framework_TestCase /** * Folder non existent: raise an exception. * - * @expectedException IOException + * @expectedException Shaarli\Exceptions\IOException * @expectedExceptionMessage Error accessing "nopefolder" */ public function testWriteFolderDoesNotExist() @@ -72,7 +74,7 @@ class FileUtilsTest extends PHPUnit_Framework_TestCase /** * Folder non writable: raise an exception. * - * @expectedException IOException + * @expectedException Shaarli\Exceptions\IOException * @expectedExceptionMessage Error accessing "sandbox" */ public function testWriteFolderPermission() -- cgit v1.2.3