X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Fconfig%2FConfigJsonTest.php;h=f1612e9bfdcbff41bc1a284f82aa82eb17b7a957;hb=8f60e1206e45e67c96a7630d4ff94e72fe875f09;hp=d237bc80cdacd1a7919399f68cad57ece869a470;hpb=36eb71fb48aa3e752a1e32774b8eead18780bf29;p=github%2Fshaarli%2FShaarli.git diff --git a/tests/config/ConfigJsonTest.php b/tests/config/ConfigJsonTest.php index d237bc80..f1612e9b 100644 --- a/tests/config/ConfigJsonTest.php +++ b/tests/config/ConfigJsonTest.php @@ -4,14 +4,14 @@ namespace Shaarli\Config; /** * Class ConfigJsonTest */ -class ConfigJsonTest extends \PHPUnit_Framework_TestCase +class ConfigJsonTest extends \PHPUnit\Framework\TestCase { /** * @var ConfigJson */ protected $configIO; - public function setUp() + protected function setUp(): void { $this->configIO = new ConfigJson(); } @@ -24,7 +24,7 @@ class ConfigJsonTest extends \PHPUnit_Framework_TestCase $conf = $this->configIO->read('tests/utils/config/configJson.json.php'); $this->assertEquals('root', $conf['credentials']['login']); $this->assertEquals('lala', $conf['redirector']['url']); - $this->assertEquals('tests/utils/config/datastore.php', $conf['resource']['datastore']); + $this->assertEquals('sandbox/datastore.php', $conf['resource']['datastore']); $this->assertEquals('1', $conf['plugins']['WALLABAG_VERSION']); } @@ -111,7 +111,7 @@ class ConfigJsonTest extends \PHPUnit_Framework_TestCase /** * Write to invalid path. * - * @expectedException \IOException + * @expectedException \Shaarli\Exceptions\IOException */ public function testWriteInvalidArray() { @@ -122,7 +122,7 @@ class ConfigJsonTest extends \PHPUnit_Framework_TestCase /** * Write to invalid path. * - * @expectedException \IOException + * @expectedException \Shaarli\Exceptions\IOException */ public function testWriteInvalidBlank() {