]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Util/BasePathTest.php
Merge remote-tracking branch 'upstream/2021.06-rc' into http-input-data
[friendica.git] / tests / src / Util / BasePathTest.php
index 3c619255cfe959c419760eedb9d7d4c9d778e437..ffafa5b55a69bb37d6511c3cb815eb3cf2cc9a4e 100644 (file)
@@ -58,16 +58,19 @@ class BasePathTest extends MockedTest
         */
        public function testDetermineBasePath(array $server, $input, $output)
        {
-               $this->assertEquals($output, BasePath::create($input, $server));
+               $basepath = new BasePath($input, $server);
+               self::assertEquals($output, $basepath->getPath());
        }
 
        /**
         * Test the basepath determination with a complete wrong path
-        * @expectedException \Exception
-        * @expectedExceptionMessageRegExp /(.*) is not a valid basepath/
         */
        public function testFailedBasePath()
        {
-               BasePath::create('/now23452sgfgas', []);
+               $this->expectException(\Exception::class);
+               $this->expectExceptionMessageRegExp("/(.*) is not a valid basepath/");
+               
+               $basepath = new BasePath('/now23452sgfgas', []);
+               $basepath->getPath();
        }
 }