diff --git a/README.md b/README.md index 2d308fd78..3a772e7d4 100755 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ With Karaka you have one partner who can provide all the tools and software solu ## Requirements -* PHP 8.1 -* PHP extension: php8.1-dev php8.1-cli php8.1-common php8.1-mysql php8.1-pgsql php8.1-xdebug php8.1-opcache php8.1-pdo php8.1-sqlite php8.1-mbstring php8.1-curl php8.1-imap php8.1-bcmath php8.1-zip php8.1-dom php8.1-xml php8.1-phar php8.1-gd php-pear +* PHP 8.2 +* PHP extension: php8.2-dev php8.2-cli php8.2-common php8.2-intl php8.2-mysql php8.2-pgsql php8.2-xdebug php8.2-opcache php8.2-pdo php8.2-sqlite php8.2-mbstring php8.2-curl php8.2-imap php8.2-bcmath php8.2-zip php8.2-dom php8.2-xml php8.2-phar php8.2-gd php-pear * apache2 (recommended) or nginx * mysql-server (recommended) or postgresql postgresql-contrib * Tools: tesseract-ocr, pdftotext, pdftoppm diff --git a/composer.json b/composer.json index e7054bd27..94ca97fd7 100755 --- a/composer.json +++ b/composer.json @@ -8,15 +8,15 @@ } ], "require-dev": { - "phpunit/phpunit": ">=9.4", - "friendsofphp/php-cs-fixer": ">=3.8", - "squizlabs/php_codesniffer": ">=3.6", + "phpunit/phpunit": ">=11.0", + "friendsofphp/php-cs-fixer": ">=3.51", + "squizlabs/php_codesniffer": ">=3.7", "phpmd/phpmd": ">=2.9", - "phpstan/phpstan": ">=1.8.6", + "phpstan/phpstan": ">=1.10.62", "phan/phan": ">=3.2.6", "phploc/phploc": ">=7.0", "phpmetrics/phpmetrics": ">=2.8", - "rector/rector": ">=0.18.0" + "rector/rector": ">=1.0.3" }, "minimum-stability": "dev", "prefer-stable": true diff --git a/tests/Account/AccountManagerTest.php b/tests/Account/AccountManagerTest.php index 63c6ea074..30e72c71b 100755 --- a/tests/Account/AccountManagerTest.php +++ b/tests/Account/AccountManagerTest.php @@ -43,7 +43,7 @@ final class AccountManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The manager has the expected default values after initialization - * @covers phpOMS\Account\AccountManager + * @covers \phpOMS\Account\AccountManager * @group framework */ public function testDefault() : void @@ -55,7 +55,7 @@ final class AccountManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An account can be added to the manager - * @covers phpOMS\Account\AccountManager + * @covers \phpOMS\Account\AccountManager * @group framework */ public function testAddAccount() : void @@ -67,7 +67,7 @@ final class AccountManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An account can be retrieved from the manager - * @covers phpOMS\Account\AccountManager + * @covers \phpOMS\Account\AccountManager * @group framework */ public function testRetrieveAccount() : void @@ -78,7 +78,7 @@ final class AccountManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An account can only be added once to the account manager (no duplication) - * @covers phpOMS\Account\AccountManager + * @covers \phpOMS\Account\AccountManager * @group framework */ public function testNoAccountDuplication() : void @@ -94,7 +94,7 @@ final class AccountManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An account can be removed from the account manager - * @covers phpOMS\Account\AccountManager + * @covers \phpOMS\Account\AccountManager * @group framework */ public function testRemoveAccount() : void @@ -107,7 +107,7 @@ final class AccountManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Only a valid account can be removed from the manager - * @covers phpOMS\Account\AccountManager + * @covers \phpOMS\Account\AccountManager * @group framework */ public function testRemoveOnlyValidAccount() : void diff --git a/tests/Account/AccountTest.php b/tests/Account/AccountTest.php index 99891fb9e..516897d9f 100755 --- a/tests/Account/AccountTest.php +++ b/tests/Account/AccountTest.php @@ -45,7 +45,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox The account has the expected default values after initialization - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testDefault() : void @@ -95,7 +95,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox The account names can be set and retrieved correctly - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testSetAndGetAccountNames() : void @@ -118,7 +118,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox Groups can be added to an account - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testAddAndGetGroup() : void @@ -133,7 +133,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox An account can have a valid email address - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testSetAndGetAccountEmail() : void @@ -147,7 +147,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox Account permissions can be added - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testPermissionAdd() : void @@ -179,7 +179,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox Account permissions can be checked for existence - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testPermissionExists() : void @@ -208,7 +208,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox Account permissions can be removed - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testPermissionRemove() : void @@ -228,7 +228,7 @@ final class AccountTest extends \PHPUnit\Framework\TestCase /** * @testdox An account can have it's own localization - * @covers phpOMS\Account\Account + * @covers \phpOMS\Account\Account * @group framework */ public function testLocalization() : void diff --git a/tests/Account/GroupTest.php b/tests/Account/GroupTest.php index a6d4c36c7..5092c8109 100755 --- a/tests/Account/GroupTest.php +++ b/tests/Account/GroupTest.php @@ -30,7 +30,7 @@ final class GroupTest extends \PHPUnit\Framework\TestCase { /** * @testdox The group has the expected default values after initialization - * @covers phpOMS\Account\Group + * @covers \phpOMS\Account\Group * @group framework */ public function testDefault() : void @@ -59,7 +59,7 @@ final class GroupTest extends \PHPUnit\Framework\TestCase /** * @testdox The group name and description can be set and retrieved correctly - * @covers phpOMS\Account\Group + * @covers \phpOMS\Account\Group * @group framework */ public function testSetAndGetGroupNameDescription() : void @@ -75,7 +75,7 @@ final class GroupTest extends \PHPUnit\Framework\TestCase /** * @testdox Group permissions can be added - * @covers phpOMS\Account\Group + * @covers \phpOMS\Account\Group * @group framework */ public function testPermissionAdd() : void @@ -106,7 +106,7 @@ final class GroupTest extends \PHPUnit\Framework\TestCase /** * @testdox Group permissions can be checked for existence - * @covers phpOMS\Account\Group + * @covers \phpOMS\Account\Group * @group framework */ public function testPermissionExists() : void @@ -122,7 +122,7 @@ final class GroupTest extends \PHPUnit\Framework\TestCase /** * @testdox Group permissions can be removed - * @covers phpOMS\Account\Group + * @covers \phpOMS\Account\Group * @group framework */ public function testPermissionRemove() : void diff --git a/tests/Account/NullAccountTest.php b/tests/Account/NullAccountTest.php index e08f6c07e..991582a80 100755 --- a/tests/Account/NullAccountTest.php +++ b/tests/Account/NullAccountTest.php @@ -26,7 +26,7 @@ final class NullAccountTest extends \PHPUnit\Framework\TestCase { /** * @testdox The null account is an instance of the account class - * @covers phpOMS\Account\NullAccount + * @covers \phpOMS\Account\NullAccount * @group framework */ public function testNull() : void @@ -36,7 +36,7 @@ final class NullAccountTest extends \PHPUnit\Framework\TestCase /** * @testdox The null account can get initialized with an id - * @covers phpOMS\Account\NullAccount + * @covers \phpOMS\Account\NullAccount * @group framework */ public function testId() : void diff --git a/tests/Account/NullGroupTest.php b/tests/Account/NullGroupTest.php index 03e4738e3..b761bc4fb 100755 --- a/tests/Account/NullGroupTest.php +++ b/tests/Account/NullGroupTest.php @@ -26,7 +26,7 @@ final class NullGroupTest extends \PHPUnit\Framework\TestCase { /** * @testdox The null group is an instance of the group class - * @covers phpOMS\Account\NullGroup + * @covers \phpOMS\Account\NullGroup * @group framework */ public function testNull() : void @@ -36,7 +36,7 @@ final class NullGroupTest extends \PHPUnit\Framework\TestCase /** * @testdox The null group can get initialized with an id - * @covers phpOMS\Account\NullGroup + * @covers \phpOMS\Account\NullGroup * @group framework */ public function testId() : void diff --git a/tests/Account/PermissionAbstractTest.php b/tests/Account/PermissionAbstractTest.php index 253560003..009d19ba1 100755 --- a/tests/Account/PermissionAbstractTest.php +++ b/tests/Account/PermissionAbstractTest.php @@ -28,7 +28,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase { /** * @testdox The permission has the expected default values after initialization - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testAbstractDefault() : void @@ -66,7 +66,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission can be set and returned correctly - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testPermissionInputOutput() : void @@ -79,7 +79,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Two permissions can be checked for equality - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testEqualPermissions() : void @@ -119,7 +119,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Correct permissions are validated - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testValidPermission() : void @@ -134,7 +134,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid permissions are not validated - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testInvalidPermission() : void @@ -148,7 +148,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Correct permission flags are validated - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testValidPermissionFlag() : void @@ -163,7 +163,7 @@ final class PermissionAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid permission flags are not validated - * @covers phpOMS\Account\PermissionAbstract + * @covers \phpOMS\Account\PermissionAbstract * @group framework */ public function testInvalidPermissionFlag() : void diff --git a/tests/Ai/Ocr/BasicOcrTest.php b/tests/Ai/Ocr/BasicOcrTest.php index f8321b80a..682b35fde 100755 --- a/tests/Ai/Ocr/BasicOcrTest.php +++ b/tests/Ai/Ocr/BasicOcrTest.php @@ -22,7 +22,7 @@ use phpOMS\Ai\Ocr\BasicOcr; final class BasicOcrTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Ai\Ocr\BasicOcr + * @covers \phpOMS\Ai\Ocr\BasicOcr * @group framework */ public function testOcr() : void @@ -64,7 +64,7 @@ final class BasicOcrTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Ai\Ocr\BasicOcr + * @covers \phpOMS\Ai\Ocr\BasicOcr * @group framework */ public function testInvalidImagePath() : void @@ -75,7 +75,7 @@ final class BasicOcrTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Ai\Ocr\BasicOcr + * @covers \phpOMS\Ai\Ocr\BasicOcr * @group framework */ public function testInvalidLabelPath() : void diff --git a/tests/Ai/Ocr/Tesseract/TesseractOcrTest.php b/tests/Ai/Ocr/Tesseract/TesseractOcrTest.php index e1c7b364d..fc1307575 100755 --- a/tests/Ai/Ocr/Tesseract/TesseractOcrTest.php +++ b/tests/Ai/Ocr/Tesseract/TesseractOcrTest.php @@ -50,7 +50,7 @@ final class TesseractOcrTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Ai\Ocr\Tesseract\TesseractOcr + * @covers \phpOMS\Ai\Ocr\Tesseract\TesseractOcr * @group framework */ public function testOcrBasic() : void @@ -76,7 +76,7 @@ final class TesseractOcrTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Ai\Ocr\Tesseract\TesseractOcr + * @covers \phpOMS\Ai\Ocr\Tesseract\TesseractOcr * @group framework */ public function testOcrWithThresholding() : void @@ -99,7 +99,7 @@ final class TesseractOcrTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Ai\Ocr\Tesseract\TesseractOcr + * @covers \phpOMS\Ai\Ocr\Tesseract\TesseractOcr * @group framework */ /* @@ -135,7 +135,7 @@ final class TesseractOcrTest extends \PHPUnit\Framework\TestCase */ /** - * @covers phpOMS\Ai\Ocr\Tesseract\TesseractOcr + * @covers \phpOMS\Ai\Ocr\Tesseract\TesseractOcr * @group framework */ /* diff --git a/tests/Algorithm/Clustering/KmeansTest.php b/tests/Algorithm/Clustering/KmeansTest.php index 2da821f82..c06febc26 100755 --- a/tests/Algorithm/Clustering/KmeansTest.php +++ b/tests/Algorithm/Clustering/KmeansTest.php @@ -28,7 +28,7 @@ final class KmeansTest extends \PHPUnit\Framework\TestCase { /** * @testdox The clustering of points and dynamic check of new points works as expected - * @covers phpOMS\Algorithm\Clustering\Kmeans + * @covers \phpOMS\Algorithm\Clustering\Kmeans * @group framework */ public function testKmeans() : void diff --git a/tests/Algorithm/Clustering/PointTest.php b/tests/Algorithm/Clustering/PointTest.php index 35b555ea7..b6fd68d6e 100755 --- a/tests/Algorithm/Clustering/PointTest.php +++ b/tests/Algorithm/Clustering/PointTest.php @@ -25,7 +25,7 @@ final class PointTest extends \PHPUnit\Framework\TestCase { /** * @testdox The point has the expected default values after initialization - * @covers phpOMS\Algorithm\Clustering\Point + * @covers \phpOMS\Algorithm\Clustering\Point * @group framework */ public function testDefault() : void @@ -41,7 +41,7 @@ final class PointTest extends \PHPUnit\Framework\TestCase /** * @testdox Coordinates of a point can be set and returned - * @covers phpOMS\Algorithm\Clustering\Point + * @covers \phpOMS\Algorithm\Clustering\Point * @group framework */ public function testCoordinateInputOutput() : void @@ -58,7 +58,7 @@ final class PointTest extends \PHPUnit\Framework\TestCase /** * @testdox The group/cluster of a point can be set and returned - * @covers phpOMS\Algorithm\Clustering\Point + * @covers \phpOMS\Algorithm\Clustering\Point * @group framework */ public function testGroupInputOutput() : void @@ -71,7 +71,7 @@ final class PointTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a point can be set and returned - * @covers phpOMS\Algorithm\Clustering\Point + * @covers \phpOMS\Algorithm\Clustering\Point * @group framework */ public function testNameInputOutput() : void diff --git a/tests/Algorithm/CoinMatching/MinimumCoinProblemTest.php b/tests/Algorithm/CoinMatching/MinimumCoinProblemTest.php index ea94aa753..7b15da5db 100755 --- a/tests/Algorithm/CoinMatching/MinimumCoinProblemTest.php +++ b/tests/Algorithm/CoinMatching/MinimumCoinProblemTest.php @@ -27,7 +27,7 @@ final class MinimumCoinProblemTest extends \PHPUnit\Framework\TestCase { /** * @testdox A value is matched with the minimum quantity of available coins. - * @covers phpOMS\Algorithm\CoinMatching\MinimumCoinProblem + * @covers \phpOMS\Algorithm\CoinMatching\MinimumCoinProblem * @group framework */ public function testMinimumCoins() : void diff --git a/tests/Algorithm/Graph/DependencyResolverTest.php b/tests/Algorithm/Graph/DependencyResolverTest.php index eeab355b6..bd6ef6805 100644 --- a/tests/Algorithm/Graph/DependencyResolverTest.php +++ b/tests/Algorithm/Graph/DependencyResolverTest.php @@ -26,7 +26,7 @@ require_once __DIR__ . '/../../Autoloader.php'; final class DependencyResolverTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Algorithm\Graph\DependencyResolver + * @covers \phpOMS\Algorithm\Graph\DependencyResolver * @group framework */ public function testResolveCircular() : void @@ -37,7 +37,7 @@ final class DependencyResolverTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Algorithm\Graph\DependencyResolver + * @covers \phpOMS\Algorithm\Graph\DependencyResolver * @group framework */ public function testResolve() : void diff --git a/tests/Algorithm/Graph/MarkovChainTest.php b/tests/Algorithm/Graph/MarkovChainTest.php index 0521dc2d5..316c34274 100644 --- a/tests/Algorithm/Graph/MarkovChainTest.php +++ b/tests/Algorithm/Graph/MarkovChainTest.php @@ -26,7 +26,7 @@ require_once __DIR__ . '/../../Autoloader.php'; final class MarkovChainTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Algorithm\Graph\MarkovChain + * @covers \phpOMS\Algorithm\Graph\MarkovChain * @group framework */ public function testGenerate() : void @@ -44,7 +44,7 @@ final class MarkovChainTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Algorithm\Graph\MarkovChain + * @covers \phpOMS\Algorithm\Graph\MarkovChain * @group framework */ public function testTrainingGenerate() : void @@ -56,7 +56,7 @@ final class MarkovChainTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Algorithm\Graph\MarkovChain + * @covers \phpOMS\Algorithm\Graph\MarkovChain * @group framework */ public function testStepProbability() : void @@ -80,7 +80,7 @@ final class MarkovChainTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Algorithm\Graph\MarkovChain + * @covers \phpOMS\Algorithm\Graph\MarkovChain * @group framework */ public function testPathProbability() : void diff --git a/tests/Algorithm/JobScheduling/JobTest.php b/tests/Algorithm/JobScheduling/JobTest.php index a20d71d92..6a670b5a5 100755 --- a/tests/Algorithm/JobScheduling/JobTest.php +++ b/tests/Algorithm/JobScheduling/JobTest.php @@ -25,7 +25,7 @@ final class JobTest extends \PHPUnit\Framework\TestCase { /** * @testdox The job has the expected values after initialization - * @covers phpOMS\Algorithm\JobScheduling\Job + * @covers \phpOMS\Algorithm\JobScheduling\Job * @group framework */ public function testDefault() : void diff --git a/tests/Algorithm/JobScheduling/WeightedTest.php b/tests/Algorithm/JobScheduling/WeightedTest.php index 69ce8908f..fdada1f26 100755 --- a/tests/Algorithm/JobScheduling/WeightedTest.php +++ b/tests/Algorithm/JobScheduling/WeightedTest.php @@ -26,7 +26,7 @@ final class WeightedTest extends \PHPUnit\Framework\TestCase { /** * @testdox The optimal job combination is selected to maximize the value/profit without overlapping jobs - * @covers phpOMS\Algorithm\JobScheduling\Weighted + * @covers \phpOMS\Algorithm\JobScheduling\Weighted * @group framework */ public function testNoOverlappingScheduling() : void @@ -60,7 +60,7 @@ final class WeightedTest extends \PHPUnit\Framework\TestCase /** * @testdox A job list with only one job simply returns one job - * @covers phpOMS\Algorithm\JobScheduling\Weighted + * @covers \phpOMS\Algorithm\JobScheduling\Weighted * @group framework */ public function testSmallList() : void diff --git a/tests/Algorithm/Knapsack/BackpackTest.php b/tests/Algorithm/Knapsack/BackpackTest.php index bb47f0ae4..d3f3a1652 100755 --- a/tests/Algorithm/Knapsack/BackpackTest.php +++ b/tests/Algorithm/Knapsack/BackpackTest.php @@ -26,7 +26,7 @@ final class BackpackTest extends \PHPUnit\Framework\TestCase { /** * @testdox The backpack has the expected values after initialization - * @covers phpOMS\Algorithm\Knapsack\Backpack + * @covers \phpOMS\Algorithm\Knapsack\Backpack * @group framework */ public function testDefault() : void @@ -41,7 +41,7 @@ final class BackpackTest extends \PHPUnit\Framework\TestCase /** * @testdox Items can be added to the backpack and automatically change the value and cost the backpack contains - * @covers phpOMS\Algorithm\Knapsack\Backpack + * @covers \phpOMS\Algorithm\Knapsack\Backpack * @group framework */ public function testAddItems() : void diff --git a/tests/Algorithm/Knapsack/BoundedTest.php b/tests/Algorithm/Knapsack/BoundedTest.php index d9d5de7cd..276318a70 100755 --- a/tests/Algorithm/Knapsack/BoundedTest.php +++ b/tests/Algorithm/Knapsack/BoundedTest.php @@ -27,7 +27,7 @@ final class BoundedTest extends \PHPUnit\Framework\TestCase { /** * @testdox The optimal item selection in a backpack is calculated in order to optimize the value/profit while considering the available capacity/cost limit - * @covers phpOMS\Algorithm\Knapsack\Bounded + * @covers \phpOMS\Algorithm\Knapsack\Bounded * @group framework */ public function testBackpacking() : void diff --git a/tests/Algorithm/Knapsack/ContinuousTest.php b/tests/Algorithm/Knapsack/ContinuousTest.php index 8c8688588..3052c3057 100755 --- a/tests/Algorithm/Knapsack/ContinuousTest.php +++ b/tests/Algorithm/Knapsack/ContinuousTest.php @@ -27,7 +27,7 @@ final class ContinuousTest extends \PHPUnit\Framework\TestCase { /** * @testdox The optimal item selection in a backpack is calculated in order to optimize the value/profit while considering the available capacity/cost limit [discrete quantities] - * @covers phpOMS\Algorithm\Knapsack\Continuous + * @covers \phpOMS\Algorithm\Knapsack\Continuous * @group framework */ public function testBackpacking() : void @@ -69,7 +69,7 @@ final class ContinuousTest extends \PHPUnit\Framework\TestCase /** * @testdox The optimal item selection in a backpack is calculated in order to optimize the value/profit while considering the available capacity/cost limit [continuous quantities] - * @covers phpOMS\Algorithm\Knapsack\Continuous + * @covers \phpOMS\Algorithm\Knapsack\Continuous * @group framework */ public function testBackpackingAlternative() : void diff --git a/tests/Algorithm/Knapsack/ItemTest.php b/tests/Algorithm/Knapsack/ItemTest.php index c7bb4e340..1cc52427c 100755 --- a/tests/Algorithm/Knapsack/ItemTest.php +++ b/tests/Algorithm/Knapsack/ItemTest.php @@ -25,7 +25,7 @@ final class ItemTest extends \PHPUnit\Framework\TestCase { /** * @testdox The item has the expected values after initialization - * @covers phpOMS\Algorithm\Knapsack\Item + * @covers \phpOMS\Algorithm\Knapsack\Item * @group framework */ public function testDefault() : void diff --git a/tests/Algorithm/Maze/MazeGeneratorTest.php b/tests/Algorithm/Maze/MazeGeneratorTest.php index 307e82a17..f1dde2dd9 100755 --- a/tests/Algorithm/Maze/MazeGeneratorTest.php +++ b/tests/Algorithm/Maze/MazeGeneratorTest.php @@ -27,7 +27,7 @@ final class MazeGeneratorTest extends \PHPUnit\Framework\TestCase { /** * @testdox A random maze can be generated - * @covers phpOMS\Algorithm\Maze\MazeGenerator + * @covers \phpOMS\Algorithm\Maze\MazeGenerator * @group framework */ public function testMazeGeneration() : void @@ -61,7 +61,7 @@ final class MazeGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A random maze can be rendered - * @covers phpOMS\Algorithm\Maze\MazeGenerator + * @covers \phpOMS\Algorithm\Maze\MazeGenerator * @group framework */ public function testMazeRender() : void diff --git a/tests/Algorithm/PathFinding/AStarNodeTest.php b/tests/Algorithm/PathFinding/AStarNodeTest.php index f83e1d3c8..d67252e6f 100755 --- a/tests/Algorithm/PathFinding/AStarNodeTest.php +++ b/tests/Algorithm/PathFinding/AStarNodeTest.php @@ -37,7 +37,7 @@ final class AStarNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node has the expected values after initialization - * @covers phpOMS\Algorithm\PathFinding\AStarNode + * @covers \phpOMS\Algorithm\PathFinding\AStarNode * @group framework */ public function testDefault() : void @@ -51,7 +51,7 @@ final class AStarNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node can be set closed and checked - * @covers phpOMS\Algorithm\PathFinding\AStarNode + * @covers \phpOMS\Algorithm\PathFinding\AStarNode * @group framework */ public function testClosedInputOutput() : void @@ -62,7 +62,7 @@ final class AStarNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node can be set opened and checked - * @covers phpOMS\Algorithm\PathFinding\AStarNode + * @covers \phpOMS\Algorithm\PathFinding\AStarNode * @group framework */ public function testOpenedInputOutput() : void @@ -73,7 +73,7 @@ final class AStarNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The g value cen be set and returned - * @covers phpOMS\Algorithm\PathFinding\AStarNode + * @covers \phpOMS\Algorithm\PathFinding\AStarNode * @group framework */ public function testGInputOutput() : void @@ -84,7 +84,7 @@ final class AStarNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The h value cen be set and returned - * @covers phpOMS\Algorithm\PathFinding\AStarNode + * @covers \phpOMS\Algorithm\PathFinding\AStarNode * @group framework */ public function testHInputOutput() : void @@ -95,7 +95,7 @@ final class AStarNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The f value cen be set and returned - * @covers phpOMS\Algorithm\PathFinding\AStarNode + * @covers \phpOMS\Algorithm\PathFinding\AStarNode * @group framework */ public function testFInputOutput() : void diff --git a/tests/Algorithm/PathFinding/AStarTest.php b/tests/Algorithm/PathFinding/AStarTest.php index b5777cd9d..8023e1da5 100755 --- a/tests/Algorithm/PathFinding/AStarTest.php +++ b/tests/Algorithm/PathFinding/AStarTest.php @@ -77,7 +77,7 @@ final class AStarTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for diagonal movement - * @covers phpOMS\Algorithm\PathFinding\AStar + * @covers \phpOMS\Algorithm\PathFinding\AStar * @group framework */ public function testPathFindingDiagonal() : void @@ -140,7 +140,7 @@ final class AStarTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for straight movement - * @covers phpOMS\Algorithm\PathFinding\AStar + * @covers \phpOMS\Algorithm\PathFinding\AStar * @group framework */ public function testPathFindingStraight() : void @@ -203,7 +203,7 @@ final class AStarTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for diagonal movement [one obstacle] - * @covers phpOMS\Algorithm\PathFinding\AStar + * @covers \phpOMS\Algorithm\PathFinding\AStar * @group framework */ public function testPathFindingDiagonalOneObstacle() : void @@ -266,7 +266,7 @@ final class AStarTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for diagonal movement [no obstacle] - * @covers phpOMS\Algorithm\PathFinding\AStar + * @covers \phpOMS\Algorithm\PathFinding\AStar * @group framework */ public function testPathFindingDiagonalNoObstacle() : void @@ -329,7 +329,7 @@ final class AStarTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid start or end node returns the grid - * @covers phpOMS\Algorithm\PathFinding\AStar + * @covers \phpOMS\Algorithm\PathFinding\AStar * @group framework */ public function testInvalidStartEndNode() : void diff --git a/tests/Algorithm/PathFinding/GridTest.php b/tests/Algorithm/PathFinding/GridTest.php index 5c2f373d1..d6435dabc 100755 --- a/tests/Algorithm/PathFinding/GridTest.php +++ b/tests/Algorithm/PathFinding/GridTest.php @@ -29,7 +29,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase { /** * @testdox By default a grid is empty - * @covers phpOMS\Algorithm\PathFinding\Grid + * @covers \phpOMS\Algorithm\PathFinding\Grid * @group framework */ public function testDefault() : void @@ -40,7 +40,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox A grid can be created from an array - * @covers phpOMS\Algorithm\PathFinding\Grid + * @covers \phpOMS\Algorithm\PathFinding\Grid * @group framework */ public function testGridFromArray() : void @@ -66,7 +66,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox A node can be set and returned from the grid - * @covers phpOMS\Algorithm\PathFinding\Grid + * @covers \phpOMS\Algorithm\PathFinding\Grid * @group framework */ public function testNodeInputOutput() : void @@ -84,7 +84,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox Out of bounds nodes cannot be returned - * @covers phpOMS\Algorithm\PathFinding\Grid::getNode + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNode * @group framework */ public function testOutOfBoundsNode() : void @@ -103,7 +103,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All horizontal neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testStraightHorizontalNeighbors() : void @@ -124,7 +124,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All vertical neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testStraightVerticalNeighbors() : void @@ -145,7 +145,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox No straight neighbors are found if no straight neighbors exist - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testStraightNoneNeighbors() : void @@ -164,7 +164,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All straight neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testStraightAllNeighbors() : void @@ -187,7 +187,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors except blocked diagonal neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalLRNeighbors() : void @@ -212,7 +212,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors except blocked diagonal neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalURNeighbors() : void @@ -237,7 +237,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox No diagonal neighbors are found if no neighbors exist - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalNoneNeighbors() : void @@ -256,7 +256,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All diagonal neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalOnlyNeighbors() : void @@ -279,7 +279,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors can be found correctly - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalAllNeighbors() : void @@ -306,7 +306,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors can be found correctly even if one obstacle exists - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalOneObstacleNoBlockNeighbors() : void @@ -332,7 +332,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox No diagonal neighbors are found if they are blocked on two sides - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalOneObstacleBlockNeighbors() : void @@ -356,7 +356,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors can be found correctly if no obstacles exists - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalOneObstacleAllNeighbors() : void @@ -383,7 +383,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox No diagonal neighbors are found if one obstacle exists - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalNoObstacleBlockNeighbors() : void @@ -407,7 +407,7 @@ final class GridTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors can be found correctly if no obstacles exist - * @covers phpOMS\Algorithm\PathFinding\Grid::getNeighbors + * @covers \phpOMS\Algorithm\PathFinding\Grid::getNeighbors * @group framework */ public function testDiagonalNoObstacleAllNeighbors() : void diff --git a/tests/Algorithm/PathFinding/HeuristicTest.php b/tests/Algorithm/PathFinding/HeuristicTest.php index a1bf26f12..942782e65 100755 --- a/tests/Algorithm/PathFinding/HeuristicTest.php +++ b/tests/Algorithm/PathFinding/HeuristicTest.php @@ -28,7 +28,7 @@ final class HeuristicTest extends \PHPUnit\Framework\TestCase { /** * @testdox The heuristics return the correct metric results - * @covers phpOMS\Algorithm\PathFinding\Heuristic + * @covers \phpOMS\Algorithm\PathFinding\Heuristic * @group framework */ public function testHeuristics() : void diff --git a/tests/Algorithm/PathFinding/JumpPointNodeTest.php b/tests/Algorithm/PathFinding/JumpPointNodeTest.php index 82d1e3d79..c6e8cf35d 100755 --- a/tests/Algorithm/PathFinding/JumpPointNodeTest.php +++ b/tests/Algorithm/PathFinding/JumpPointNodeTest.php @@ -37,7 +37,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node has the expected values after initialization - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testDefault() : void @@ -52,7 +52,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node can be set closed and checked - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testClosedInputOutput() : void @@ -63,7 +63,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node can be set opened and checked - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testOpenedInputOutput() : void @@ -74,7 +74,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node can be set tested and checked - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testTestedInputOutput() : void @@ -85,7 +85,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The g value cen be set and returned - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testGInputOutput() : void @@ -96,7 +96,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The h value cen be set and returned - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testHInputOutput() : void @@ -107,7 +107,7 @@ final class JumpPointNodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The f value cen be set and returned - * @covers phpOMS\Algorithm\PathFinding\JumpPointNode + * @covers \phpOMS\Algorithm\PathFinding\JumpPointNode * @group framework */ public function testFInputOutput() : void diff --git a/tests/Algorithm/PathFinding/JumpPointSearchTest.php b/tests/Algorithm/PathFinding/JumpPointSearchTest.php index f277c0360..6bb9461c7 100755 --- a/tests/Algorithm/PathFinding/JumpPointSearchTest.php +++ b/tests/Algorithm/PathFinding/JumpPointSearchTest.php @@ -77,7 +77,7 @@ final class JumpPointSearchTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for diagonal movement - * @covers phpOMS\Algorithm\PathFinding\JumpPointSearch + * @covers \phpOMS\Algorithm\PathFinding\JumpPointSearch * @group framework */ public function testPathFindingDiagonal() : void @@ -121,7 +121,7 @@ final class JumpPointSearchTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for straight movement - * @covers phpOMS\Algorithm\PathFinding\JumpPointSearch + * @covers \phpOMS\Algorithm\PathFinding\JumpPointSearch * @group framework */ public function testPathFindingStraight() : void @@ -165,7 +165,7 @@ final class JumpPointSearchTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for diagonal movement [one obstacle] - * @covers phpOMS\Algorithm\PathFinding\JumpPointSearch + * @covers \phpOMS\Algorithm\PathFinding\JumpPointSearch * @group framework */ public function testPathFindingDiagonalOneObstacle() : void @@ -209,7 +209,7 @@ final class JumpPointSearchTest extends \PHPUnit\Framework\TestCase /** * @testdox The correct path is found for diagonal movement [no obstacle] - * @covers phpOMS\Algorithm\PathFinding\JumpPointSearch + * @covers \phpOMS\Algorithm\PathFinding\JumpPointSearch * @group framework */ public function testPathFindingDiagonalNoObstacle() : void @@ -253,7 +253,7 @@ final class JumpPointSearchTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid start or end node returns the grid - * @covers phpOMS\Algorithm\PathFinding\JumpPointSearch + * @covers \phpOMS\Algorithm\PathFinding\JumpPointSearch * @group framework */ public function testInvalidStartEndNode() : void diff --git a/tests/Algorithm/PathFinding/NodeTest.php b/tests/Algorithm/PathFinding/NodeTest.php index cb1b7cb8b..327eb913f 100755 --- a/tests/Algorithm/PathFinding/NodeTest.php +++ b/tests/Algorithm/PathFinding/NodeTest.php @@ -27,7 +27,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase { /** * @testdox The node has the expected values after initialization - * @covers phpOMS\Algorithm\PathFinding\Node + * @covers \phpOMS\Algorithm\PathFinding\Node * @group framework */ public function testDefault() : void @@ -44,7 +44,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Nodes with equal coordinates are equal - * @covers phpOMS\Algorithm\PathFinding\Node + * @covers \phpOMS\Algorithm\PathFinding\Node * @group framework */ public function testNodesWithEqualCoordinatesAreEqual() : void @@ -57,7 +57,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Nodes with different coordinates are not equal - * @covers phpOMS\Algorithm\PathFinding\Node + * @covers \phpOMS\Algorithm\PathFinding\Node * @group framework */ public function testNodesWithDifferentCoordinatesAreNotEqual() : void @@ -70,7 +70,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A parent node can be set and returned - * @covers phpOMS\Algorithm\PathFinding\Node + * @covers \phpOMS\Algorithm\PathFinding\Node * @group framework */ public function testParentInputOutput() : void diff --git a/tests/Algorithm/PathFinding/PathTest.php b/tests/Algorithm/PathFinding/PathTest.php index 53ab879fb..71926978e 100755 --- a/tests/Algorithm/PathFinding/PathTest.php +++ b/tests/Algorithm/PathFinding/PathTest.php @@ -29,7 +29,7 @@ final class PathTest extends \PHPUnit\Framework\TestCase { /** * @testdox The path has the expected values after initialization - * @covers phpOMS\Algorithm\PathFinding\Path + * @covers \phpOMS\Algorithm\PathFinding\Path * @group framework */ public function testDefault() : void @@ -42,7 +42,7 @@ final class PathTest extends \PHPUnit\Framework\TestCase /** * @testdox The diagonal euclidean path length is calculated correctly - * @covers phpOMS\Algorithm\PathFinding\Path + * @covers \phpOMS\Algorithm\PathFinding\Path * @group framework */ public function testDiagonalPathLength() : void @@ -66,7 +66,7 @@ final class PathTest extends \PHPUnit\Framework\TestCase /** * @testdox The straight euclidean path length is calculated correctly - * @covers phpOMS\Algorithm\PathFinding\Path + * @covers \phpOMS\Algorithm\PathFinding\Path * @group framework */ public function testStraightPathLength() : void @@ -90,7 +90,7 @@ final class PathTest extends \PHPUnit\Framework\TestCase /** * @testdox The path is correctly expanded in case only jump points are defined - * @covers phpOMS\Algorithm\PathFinding\Path + * @covers \phpOMS\Algorithm\PathFinding\Path * @group framework */ public function testPathExpansion() : void diff --git a/tests/Algorithm/Rating/EloTest.php b/tests/Algorithm/Rating/EloTest.php index 49a2994be..9c667ac9d 100644 --- a/tests/Algorithm/Rating/EloTest.php +++ b/tests/Algorithm/Rating/EloTest.php @@ -27,7 +27,7 @@ final class EloTest extends \PHPUnit\Framework\TestCase { /** * @testdox 1v1 rating test - * @covers phpOMS\Algorithm\Rating\Elo + * @covers \phpOMS\Algorithm\Rating\Elo * @group framework */ public function testSoloRating() : void @@ -81,7 +81,7 @@ final class EloTest extends \PHPUnit\Framework\TestCase /** * @testdox group rating test - * @covers phpOMS\Algorithm\Rating\Elo + * @covers \phpOMS\Algorithm\Rating\Elo * @group framework */ public function testGroupRating() : void diff --git a/tests/Algorithm/Rating/Glicko1Test.php b/tests/Algorithm/Rating/Glicko1Test.php index ec3c3199d..a5e0b12c5 100644 --- a/tests/Algorithm/Rating/Glicko1Test.php +++ b/tests/Algorithm/Rating/Glicko1Test.php @@ -27,7 +27,7 @@ final class Glicko1Test extends \PHPUnit\Framework\TestCase { /** * @testdox 1v1 rating test - * @covers phpOMS\Algorithm\Rating\Glicko1 + * @covers \phpOMS\Algorithm\Rating\Glicko1 * @group framework */ public function testSoloRating() : void @@ -122,7 +122,7 @@ final class Glicko1Test extends \PHPUnit\Framework\TestCase /** * @testdox group rating test - * @covers phpOMS\Algorithm\Rating\Glicko1 + * @covers \phpOMS\Algorithm\Rating\Glicko1 * @group framework */ public function testGroupRating() : void diff --git a/tests/Algorithm/Rating/Glicko2Test.php b/tests/Algorithm/Rating/Glicko2Test.php index 28b0cf8e0..7205271b2 100644 --- a/tests/Algorithm/Rating/Glicko2Test.php +++ b/tests/Algorithm/Rating/Glicko2Test.php @@ -27,7 +27,7 @@ final class Glicko2Test extends \PHPUnit\Framework\TestCase { /** * @testdox 1v1 rating test - * @covers phpOMS\Algorithm\Rating\Glicko2 + * @covers \phpOMS\Algorithm\Rating\Glicko2 * @group framework */ public function testSoloRating() : void @@ -142,7 +142,7 @@ final class Glicko2Test extends \PHPUnit\Framework\TestCase /** * @testdox group rating test - * @covers phpOMS\Algorithm\Rating\Glicko2 + * @covers \phpOMS\Algorithm\Rating\Glicko2 * @group framework */ public function testGroupRating() : void diff --git a/tests/Api/EUVAT/EUVATBffOnlineTest.php b/tests/Api/EUVAT/EUVATBffOnlineTest.php index 153efe594..4b6f220a0 100755 --- a/tests/Api/EUVAT/EUVATBffOnlineTest.php +++ b/tests/Api/EUVAT/EUVATBffOnlineTest.php @@ -25,7 +25,7 @@ final class EUVATBffOnlineTest extends \PHPUnit\Framework\TestCase { /** * @testdox The BFF Online service can validate a valid VAT ID - * @covers phpOMS\Api\EUVAT\EUVATBffOnline + * @covers \phpOMS\Api\EUVAT\EUVATBffOnline * @group framework */ public function testValidateInvalidId() : void diff --git a/tests/Api/EUVAT/EUVATViesTest.php b/tests/Api/EUVAT/EUVATViesTest.php index 87760ad76..fff2020ca 100755 --- a/tests/Api/EUVAT/EUVATViesTest.php +++ b/tests/Api/EUVAT/EUVATViesTest.php @@ -25,7 +25,7 @@ final class EUVATViesTest extends \PHPUnit\Framework\TestCase { /** * @testdox The VIES service can validate a valid VAT ID - * @covers phpOMS\Api\EUVAT\EUVATVies + * @covers \phpOMS\Api\EUVAT\EUVATVies * @group framework */ public function testValidateInvalidId() : void diff --git a/tests/Application/ApplicationAbstractTest.php b/tests/Application/ApplicationAbstractTest.php index db2284312..2e22a8592 100755 --- a/tests/Application/ApplicationAbstractTest.php +++ b/tests/Application/ApplicationAbstractTest.php @@ -25,7 +25,7 @@ final class ApplicationAbstractTest extends \PHPUnit\Framework\TestCase { /** * @testdox Application values can be set and returned - * @covers phpOMS\Application\ApplicationAbstract + * @covers \phpOMS\Application\ApplicationAbstract * @group framework */ public function testInputOutput() : void @@ -38,7 +38,7 @@ final class ApplicationAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Application values cannot be overwritten - * @covers phpOMS\Application\ApplicationAbstract + * @covers \phpOMS\Application\ApplicationAbstract * @group framework */ public function testInvalidInputOutput() : void diff --git a/tests/Application/ApplicationInfoTest.php b/tests/Application/ApplicationInfoTest.php index 6af83db67..42a8a977c 100755 --- a/tests/Application/ApplicationInfoTest.php +++ b/tests/Application/ApplicationInfoTest.php @@ -27,7 +27,7 @@ final class ApplicationInfoTest extends \PHPUnit\Framework\TestCase { /** * @testdox An application info file can be correctly loaded - * @covers phpOMS\Application\ApplicationInfo + * @covers \phpOMS\Application\ApplicationInfo * @group framework */ public function testLoad() : void @@ -51,7 +51,7 @@ final class ApplicationInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A info file can be modified - * @covers phpOMS\Application\ApplicationInfo + * @covers \phpOMS\Application\ApplicationInfo * @group framework */ public function testChange() : void @@ -75,7 +75,7 @@ final class ApplicationInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid info file path load throws a PathException - * @covers phpOMS\Application\ApplicationInfo + * @covers \phpOMS\Application\ApplicationInfo * @group framework */ public function testInvalidPathLoad() : void @@ -88,7 +88,7 @@ final class ApplicationInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid info file path update throws a PathException - * @covers phpOMS\Application\ApplicationInfo + * @covers \phpOMS\Application\ApplicationInfo * @group framework */ public function testInvalidPathUpdate() : void @@ -101,7 +101,7 @@ final class ApplicationInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid change data throws a InvalidArgumentException - * @covers phpOMS\Application\ApplicationInfo + * @covers \phpOMS\Application\ApplicationInfo * @group framework */ public function testInvalidDataSet() : void diff --git a/tests/Application/ApplicationManagerTest.php b/tests/Application/ApplicationManagerTest.php index aac7e3318..1361f02d0 100755 --- a/tests/Application/ApplicationManagerTest.php +++ b/tests/Application/ApplicationManagerTest.php @@ -86,10 +86,10 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An application can be installed and uninstalled - * @covers phpOMS\Application\ApplicationManager - * @covers phpOMS\Application\InstallerAbstract - * @covers phpOMS\Application\StatusAbstract - * @covers phpOMS\Application\UninstallerAbstract + * @covers \phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\InstallerAbstract + * @covers \phpOMS\Application\StatusAbstract + * @covers \phpOMS\Application\UninstallerAbstract * @group framework */ public function testInstallUninstall() : void @@ -113,9 +113,9 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An application can be re-initialized * @testdox A module can be re-initialized - * @covers phpOMS\Application\ApplicationManager - * @covers phpOMS\Application\InstallerAbstract - * @covers phpOMS\Application\StatusAbstract + * @covers \phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\InstallerAbstract + * @covers \phpOMS\Application\StatusAbstract * @group framework */ public function testReInit() : void @@ -142,7 +142,7 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid application path results in no installation - * @covers phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\ApplicationManager * @group framework */ public function testInvalidSourceDestinationInstallPath() : void @@ -153,7 +153,7 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing installation file results in no installation - * @covers phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\ApplicationManager * @group framework */ public function testMissingInstallerPath() : void @@ -163,7 +163,7 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing info file results in no installation - * @covers phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\ApplicationManager * @group framework */ public function testMissingApplicationInfoFile() : void @@ -173,7 +173,7 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid application path results in no uninstall - * @covers phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\ApplicationManager * @group framework */ public function testInvalidSourceUninstallPath() : void @@ -184,7 +184,7 @@ final class ApplicationManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing uninstall file results in no uninstall - * @covers phpOMS\Application\ApplicationManager + * @covers \phpOMS\Application\ApplicationManager * @group framework */ public function testMissingUninstallerPath() : void diff --git a/tests/Application/InstallerAbstractTest.php b/tests/Application/InstallerAbstractTest.php index 0cdba868d..568d855e9 100755 --- a/tests/Application/InstallerAbstractTest.php +++ b/tests/Application/InstallerAbstractTest.php @@ -39,7 +39,7 @@ final class InstallerAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox An invalid theme cannot be installed - * @covers phpOMS\Application\InstallerAbstract + * @covers \phpOMS\Application\InstallerAbstract * @group framework */ public function testInvalidTheme() : void diff --git a/tests/Application/StatusAbstractTest.php b/tests/Application/StatusAbstractTest.php index 806bf5e06..4750ee29a 100755 --- a/tests/Application/StatusAbstractTest.php +++ b/tests/Application/StatusAbstractTest.php @@ -40,7 +40,7 @@ final class StatusAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid application path cannot be activated - * @covers phpOMS\Application\StatusAbstract + * @covers \phpOMS\Application\StatusAbstract * @group framework */ public function testInvalidAppPathActivation() : void diff --git a/tests/Application/UninstallerAbstractTest.php b/tests/Application/UninstallerAbstractTest.php index 7f4e4b1b0..2f3c2bec9 100755 --- a/tests/Application/UninstallerAbstractTest.php +++ b/tests/Application/UninstallerAbstractTest.php @@ -42,7 +42,7 @@ final class UninstallerAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database schema will not perform any database operations - * @covers phpOMS\Application\UninstallerAbstract + * @covers \phpOMS\Application\UninstallerAbstract * @group framework */ public function testMissingDbFileUninstall() : void diff --git a/tests/AutoloadExceptionTest.php b/tests/AutoloadExceptionTest.php index c7bf3c440..ff90facdd 100755 --- a/tests/AutoloadExceptionTest.php +++ b/tests/AutoloadExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\AutoloadException; final class AutoloadExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\AutoloadException + * @covers \phpOMS\AutoloadException * @group framework */ public function testException() : void diff --git a/tests/AutoloaderTest.php b/tests/AutoloaderTest.php index 60517d9c9..4c69b7149 100755 --- a/tests/AutoloaderTest.php +++ b/tests/AutoloaderTest.php @@ -25,7 +25,7 @@ final class AutoloaderTest extends \PHPUnit\Framework\TestCase { /** * @testdox Classes can be checked for existence - * @covers phpOMS\Autoloader + * @covers \phpOMS\Autoloader * @group framework */ public function testAutoloader() : void @@ -35,7 +35,7 @@ final class AutoloaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Autoloader + * @covers \phpOMS\Autoloader * @group framework */ public function testLoading() : void @@ -47,7 +47,7 @@ final class AutoloaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Autoloader + * @covers \phpOMS\Autoloader * @group framework */ public function testManualPathLoading() : void @@ -66,7 +66,7 @@ final class AutoloaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Autoloader + * @covers \phpOMS\Autoloader * @group framework */ public function testOpcodeCacheInvalidation() : void @@ -89,7 +89,7 @@ final class AutoloaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Autoloader + * @covers \phpOMS\Autoloader * @group framework */ public function testUncachedInvalidation() : void diff --git a/tests/Business/Finance/FinanceFormulasTest.php b/tests/Business/Finance/FinanceFormulasTest.php index dcf12e886..3163393e6 100755 --- a/tests/Business/Finance/FinanceFormulasTest.php +++ b/tests/Business/Finance/FinanceFormulasTest.php @@ -25,7 +25,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase { /** * @testdox The annual percentage yield (APY) and reverse value calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testAnnualPercentageYield() : void @@ -42,7 +42,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The future value of annuity (FVA) and reverse value calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFutureValueOfAnnuity() : void @@ -61,7 +61,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The future value of annuity continuous compounding (FVACC) and reverse value calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFutureValueOfAnnuityContinuousCompounding() : void @@ -80,7 +80,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The annuity payment from the present value (PV) and reverse value calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testAnnuityPaymentPV() : void @@ -99,7 +99,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The annuity payment from the future value (FV) and reverse value calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testAnnuityPaymentFV() : void @@ -118,7 +118,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The annuity payment from the present value (PV) and reverse value calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testAnnuityPaymentFactorPV() : void @@ -135,7 +135,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The present value of the annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testPresentValueOfAnnuity() : void @@ -154,7 +154,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The present value annuity factor of the annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testPresentValueAnnuityFactor() : void @@ -171,7 +171,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The due present value the annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testPresentValueOfAnnuityDue() : void @@ -191,7 +191,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The due future value the annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFutureValueOfAnnuityDue() : void @@ -211,7 +211,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The relative market share calculations by shares and ales are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testRelativeMarketShare() : void @@ -222,7 +222,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The asset ratio calculations are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testAssetRatios() : void @@ -233,7 +233,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Balance ratio calculations for DII, Receivables/Turnover, and more are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testBalanceRatios() : void @@ -246,7 +246,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Dept ratios for dept coverage, dept to equity and dept to income are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testDeptRatios() : void @@ -259,7 +259,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Return on balance statement positions are correct (e.g. return on assets, on equity) - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testReturnOnBalancePositions() : void @@ -271,7 +271,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Balance / P&L ratios are correct (e.g. inventory turnover, net profit margin) - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testBalancePLRatios() : void @@ -283,7 +283,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Various ratios are correct (e.g. interest coverage, quick ratio, rate of inflation) - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testRatios() : void @@ -300,7 +300,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Compound calculations for interest, principal and periods are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testCompound() : void @@ -320,7 +320,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Continuous compound calculations for interest, principal and periods are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testContinuousCompounding() : void @@ -341,7 +341,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Calculations for interest, principal and periods are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testSimpleInterest() : void @@ -360,7 +360,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The discounted payback period is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testDiscountedPaybackPeriod() : void @@ -374,7 +374,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Test the correct calculation of the growth rate in order to double and vice versa - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testDoublingTime() : void @@ -387,7 +387,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Test the correct calculation of the growth rate in order to double and vice versa with continuous compounding - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testDoublingTimeContinuousCompounding() : void @@ -400,7 +400,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox Calculations for equivalent annual annuity are correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testEquivalentAnnualAnnuity() : void @@ -416,7 +416,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The free cash flow to equity calculation is correct (how much cash is available after expenses and dept payments) - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFreeCashFlowToEquity() : void @@ -432,7 +432,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The free cash flow to firm calculation is correct (how much cash is available after expenses) - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFreeCashFlowToFirm() : void @@ -448,7 +448,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The future value calculation is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFutureValue() : void @@ -462,7 +462,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The future value calculation including continuous compounding is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testFutureValueContinuousCompounding() : void @@ -476,7 +476,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The future value factor calculation is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testValueFactor() : void @@ -490,7 +490,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the geometric mean of multiple return rates is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testGeometricMeanReturn() : void @@ -502,7 +502,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the future value of the growing annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testGrowingAnnuityFV() : void @@ -517,7 +517,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the payment based on the present value of the growing annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testGrowingAnnuityPaymentPV() : void @@ -532,7 +532,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the payment based on the future value of the growing annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testGrowingAnnuityPaymentFV() : void @@ -547,7 +547,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the present value of the growing annuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testGrowingAnnuityPV() : void @@ -562,7 +562,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the present value of the growing perpetuity is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testGrowingPerpetuityPV() : void @@ -576,7 +576,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the net present value is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testNetPresentValue() : void @@ -589,7 +589,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox No cash flows in the net present value calculation result in 0 - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testEmptyNetPresentValue() : void @@ -599,7 +599,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the real rate of return is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testRealRateOfReturn() : void @@ -612,7 +612,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the net working capital is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testNetWorkingCapital() : void @@ -622,7 +622,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The periods to reach a future value based on the present value is calculated correctly - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testNumberOfPeriodsPVFV() : void @@ -636,7 +636,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the present value is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testPresentValue() : void @@ -650,7 +650,7 @@ final class FinanceFormulasTest extends \PHPUnit\Framework\TestCase /** * @testdox The calculation of the present value using continuous compounding is correct - * @covers phpOMS\Business\Finance\FinanceFormulas + * @covers \phpOMS\Business\Finance\FinanceFormulas * @group framework */ public function testPresentValueContinuousCompounding() : void diff --git a/tests/DataStorage/Cache/Connection/FileCacheTest.php b/tests/DataStorage/Cache/Connection/FileCacheTest.php index b2cf55ac3..9652bbccc 100755 --- a/tests/DataStorage/Cache/Connection/FileCacheTest.php +++ b/tests/DataStorage/Cache/Connection/FileCacheTest.php @@ -51,7 +51,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The file cache connection has the expected default values after initialization - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testDefault() : void @@ -76,7 +76,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The connection to a dedicated cache directory can be established (none-existing directories get created) - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testConnect() : void @@ -86,7 +86,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Different cache data (types) can be set and returned - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testSetInputOutput() : void @@ -118,7 +118,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can bet added and returned - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testAddInputOutput() : void @@ -271,7 +271,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data cannot be added if it already exists - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testInvalidOverwrite() : void @@ -283,7 +283,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Existing cache data can be replaced - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testReplace() : void @@ -297,7 +297,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing cache data cannot be replaced - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testInvalidReplace() : void @@ -307,7 +307,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Existing cache data can be deleted - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testDelete() : void @@ -326,7 +326,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The cache correctly handles general cache information - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testStats() : void @@ -349,7 +349,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The cache can be flushed - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testFlush() : void @@ -375,7 +375,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can be set and returned with expiration limits - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testUnexpiredInputOutput() : void @@ -386,7 +386,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Expired cache data cannot be returned - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testExpiredInputOutput() : void @@ -400,7 +400,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Expired cache data can be forced to return - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testForceExpiredInputOutput() : void @@ -412,7 +412,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Unexpired cache data cannot be delete if lower expiration is defined - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testInvalidDeleteUnexpired() : void @@ -423,7 +423,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Expired cache data can be deleted if equal expiration is defined - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testDeleteExpired() : void @@ -435,7 +435,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Unexpired data can be force deleted with lower expiration date - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testForceDeleteUnexpired() : void @@ -448,7 +448,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can be flushed by expiration date - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testFlushExpired() : void @@ -462,7 +462,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox A bad cache status will prevent all cache actions - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testBadCacheStatus() : void @@ -481,7 +481,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid cache connection will throw an InvalidConnectionConfigException - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testInvalidCachePath() : void @@ -493,7 +493,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Adding a invalid data type will throw an InvalidArgumentException - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testInvalidDataTypeAdd() : void @@ -505,7 +505,7 @@ final class FileCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid data type will throw an InvalidArgumentException - * @covers phpOMS\DataStorage\Cache\Connection\FileCache + * @covers \phpOMS\DataStorage\Cache\Connection\FileCache * @group framework */ public function testInvalidDataTypeSet() : void diff --git a/tests/DataStorage/Cache/Connection/MemCachedTest.php b/tests/DataStorage/Cache/Connection/MemCachedTest.php index db3ff6c14..eac28ca6f 100755 --- a/tests/DataStorage/Cache/Connection/MemCachedTest.php +++ b/tests/DataStorage/Cache/Connection/MemCachedTest.php @@ -49,7 +49,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox The memcached connection has the expected default values after initialization - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testDefault() : void @@ -73,7 +73,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox The connection to a cache can be established (none-existing directories get created) - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testConnect() : void @@ -87,7 +87,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Different cache data (types) can be set and returned - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testSetInputOutput() : void @@ -122,7 +122,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can bet added and returned - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testAddInputOutput() : void @@ -219,7 +219,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data cannot be added if it already exists - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidOverwrite() : void @@ -231,7 +231,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Existing cache data can be replaced - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testReplace() : void @@ -245,7 +245,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing cache data cannot be replaced - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidReplace() : void @@ -255,7 +255,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Existing cache data can be deleted - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testDelete() : void @@ -280,7 +280,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox The cache correctly handles general cache information - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testStats() : void @@ -307,7 +307,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox The cache can be flushed - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testFlush() : void @@ -328,7 +328,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can be set and returned with expiration limits - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testUnexpiredInputOutput() : void @@ -339,7 +339,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Expired cache data cannot be returned - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testExpiredInputOutput() : void @@ -352,7 +352,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can be flushed by expiration date - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testFlushExpired() : void @@ -366,7 +366,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox A bad cache status will prevent all cache actions - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testBadCacheStatus() : void @@ -385,7 +385,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Adding a invalid data type will throw an InvalidArgumentException - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidDataTypeAdd() : void @@ -397,7 +397,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid data type will throw an InvalidArgumentException - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidDataTypeSet() : void @@ -409,7 +409,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid host throws a InvalidConnectionConfigException - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidCacheHost() : void @@ -424,7 +424,7 @@ final class MemCachedTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid port throws a InvalidConnectionConfigException - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidCachePort() : void diff --git a/tests/DataStorage/Cache/Connection/NullCacheTest.php b/tests/DataStorage/Cache/Connection/NullCacheTest.php index daefe8759..fc24fc0f8 100755 --- a/tests/DataStorage/Cache/Connection/NullCacheTest.php +++ b/tests/DataStorage/Cache/Connection/NullCacheTest.php @@ -37,7 +37,7 @@ final class NullCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The default cache has the expected default values after initialization - * @covers phpOMS\DataStorage\Cache\Connection\NullCache + * @covers \phpOMS\DataStorage\Cache\Connection\NullCache * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Cache/Connection/RedisCacheTest.php b/tests/DataStorage/Cache/Connection/RedisCacheTest.php index f09949b0e..19e4fcecb 100755 --- a/tests/DataStorage/Cache/Connection/RedisCacheTest.php +++ b/tests/DataStorage/Cache/Connection/RedisCacheTest.php @@ -49,7 +49,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The redis cache connection has the expected default values after initialization - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testDefault() : void @@ -68,7 +68,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The connection to a cache can be established (none-existing directories get created) - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testConnect() : void @@ -83,7 +83,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Different cache data (types) can be set and returned - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testSetInputOutput() : void @@ -115,7 +115,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can bet added and returned - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testAddInputOutput() : void @@ -254,7 +254,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data cannot be added if it already exists - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testInvalidOverwrite() : void @@ -266,7 +266,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Existing cache data can be replaced - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testReplace() : void @@ -280,7 +280,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing cache data cannot be replaced - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testInvalidReplace() : void @@ -290,7 +290,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Existing cache data can be deleted - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testDelete() : void @@ -315,7 +315,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The cache correctly handles general cache information - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testStats() : void @@ -332,7 +332,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox The cache can be flushed - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testFlush() : void @@ -353,7 +353,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Cache data can be set and returned with expiration limits - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testUnexpiredInputOutput() : void @@ -364,7 +364,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Expired cache data cannot be returned - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testExpiredInputOutput() : void @@ -377,7 +377,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox A bad cache status will prevent all cache actions - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testBadCacheStatus() : void @@ -396,7 +396,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Adding a invalid data type will throw an InvalidArgumentException - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidDataTypeAdd() : void @@ -408,7 +408,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid data type will throw an InvalidArgumentException - * @covers phpOMS\DataStorage\Cache\Connection\MemCached + * @covers \phpOMS\DataStorage\Cache\Connection\MemCached * @group framework */ public function testInvalidDataTypeSet() : void @@ -420,7 +420,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid host throws a InvalidConnectionConfigException - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testInvalidCacheHost() : void @@ -435,7 +435,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid port throws a InvalidConnectionConfigException - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testInvalidCachePort() : void @@ -450,7 +450,7 @@ final class RedisCacheTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database throws a InvalidConnectionConfigException - * @covers phpOMS\DataStorage\Cache\Connection\RedisCache + * @covers \phpOMS\DataStorage\Cache\Connection\RedisCache * @group framework */ public function testInvalidCacheDatabase() : void diff --git a/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php b/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php index 1dcf9c514..e6b1b7039 100755 --- a/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php +++ b/tests/DataStorage/Cache/Exception/InvalidConnectionConfigExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException; final class InvalidConnectionConfigExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException + * @covers \phpOMS\DataStorage\Cache\Exception\InvalidConnectionConfigException * @group framework */ public function testException() : void diff --git a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php index 2fb76a8b4..09224fad3 100755 --- a/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php +++ b/tests/DataStorage/Database/Connection/ConnectionFactoryTest.php @@ -29,7 +29,7 @@ final class ConnectionFactoryTest extends \PHPUnit\Framework\TestCase { /** * @testdox The mysql connection can be successfully created - * @covers phpOMS\DataStorage\Database\Connection\ConnectionFactory + * @covers \phpOMS\DataStorage\Database\Connection\ConnectionFactory * @group framework */ public function testCreateMysql() : void @@ -50,7 +50,7 @@ final class ConnectionFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The postgresql connection can be successfully created - * @covers phpOMS\DataStorage\Database\Connection\ConnectionFactory + * @covers \phpOMS\DataStorage\Database\Connection\ConnectionFactory * @group framework */ public function testCreatePostgres() : void @@ -71,7 +71,7 @@ final class ConnectionFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The sqlserver connection can be successfully created - * @covers phpOMS\DataStorage\Database\Connection\ConnectionFactory + * @covers \phpOMS\DataStorage\Database\Connection\ConnectionFactory * @group framework */ public function testCreateSqlsrv() : void @@ -92,7 +92,7 @@ final class ConnectionFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The sqlite connection can be successfully created - * @covers phpOMS\DataStorage\Database\Connection\ConnectionFactory + * @covers \phpOMS\DataStorage\Database\Connection\ConnectionFactory * @group framework */ public function testCreateSqlite() : void @@ -113,7 +113,7 @@ final class ConnectionFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database type throws a InvalidArgumentException - * @covers phpOMS\DataStorage\Database\Connection\ConnectionFactory + * @covers \phpOMS\DataStorage\Database\Connection\ConnectionFactory * @group framework */ public function testInvalidDatabaseType() : void diff --git a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php index db2b820fe..5666f62c3 100755 --- a/tests/DataStorage/Database/Connection/MysqlConnectionTest.php +++ b/tests/DataStorage/Database/Connection/MysqlConnectionTest.php @@ -36,7 +36,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox Valid mysql connection data result in a valid database connection - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testConnect() : void @@ -55,7 +55,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database type returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidDatabaseType() : void @@ -71,7 +71,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database host returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidHost() : void @@ -87,7 +87,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database port returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidPort() : void @@ -103,7 +103,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidDatabase() : void @@ -119,7 +119,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database login returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidLogin() : void @@ -135,7 +135,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database password returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidPassword() : void @@ -151,7 +151,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database type returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidDatabaseTypeName() : void @@ -167,7 +167,7 @@ final class MysqlConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\MysqlConnection + * @covers \phpOMS\DataStorage\Database\Connection\MysqlConnection * @group framework */ public function testInvalidDatabaseName() : void diff --git a/tests/DataStorage/Database/Connection/NullConnectionTest.php b/tests/DataStorage/Database/Connection/NullConnectionTest.php index 587efc6d8..b6110b96f 100755 --- a/tests/DataStorage/Database/Connection/NullConnectionTest.php +++ b/tests/DataStorage/Database/Connection/NullConnectionTest.php @@ -26,7 +26,7 @@ final class NullConnectionTest extends \PHPUnit\Framework\TestCase { /** * @testdox A null connection can be created as placeholder - * @covers phpOMS\DataStorage\Database\Connection\NullConnection + * @covers \phpOMS\DataStorage\Database\Connection\NullConnection * @group framework */ public function testConnect() : void diff --git a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php index 8cda49ec6..3969d337e 100755 --- a/tests/DataStorage/Database/Connection/PostgresConnectionTest.php +++ b/tests/DataStorage/Database/Connection/PostgresConnectionTest.php @@ -36,7 +36,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox Valid postgresql connection data result in a valid database connection - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testConnect() : void @@ -55,7 +55,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database type returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidDatabaseType() : void @@ -70,7 +70,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database host returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidHost() : void @@ -85,7 +85,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database port returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidPort() : void @@ -100,7 +100,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidDatabase() : void @@ -115,7 +115,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database login returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidLogin() : void @@ -130,7 +130,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database password returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidPassword() : void @@ -145,7 +145,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidDatabaseTypeName() : void @@ -160,7 +160,7 @@ final class PostgresConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\PostgresConnection + * @covers \phpOMS\DataStorage\Database\Connection\PostgresConnection * @group framework */ public function testInvalidDatabaseName() : void diff --git a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php index b1daf453e..7cf8e418d 100755 --- a/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php +++ b/tests/DataStorage/Database/Connection/SQLiteConnectionTest.php @@ -36,7 +36,7 @@ final class SQLiteConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox Valid sqlite connection data result in a valid database connection - * @covers phpOMS\DataStorage\Database\Connection\SQLiteConnection + * @covers \phpOMS\DataStorage\Database\Connection\SQLiteConnection * @group framework */ public function testConnect() : void @@ -52,7 +52,7 @@ final class SQLiteConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database type returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SQLiteConnection + * @covers \phpOMS\DataStorage\Database\Connection\SQLiteConnection * @group framework */ public function testInvalidDatabaseType() : void @@ -67,7 +67,7 @@ final class SQLiteConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox Valid sqlite connection data result in a valid database connection - * @covers phpOMS\DataStorage\Database\Connection\SQLiteConnection + * @covers \phpOMS\DataStorage\Database\Connection\SQLiteConnection * @group framework */ public function testInvalidDatabasePath() : void @@ -83,7 +83,7 @@ final class SQLiteConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SQLiteConnection + * @covers \phpOMS\DataStorage\Database\Connection\SQLiteConnection * @group framework */ public function testInvalidDatabase() : void @@ -98,7 +98,7 @@ final class SQLiteConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SQLiteConnection + * @covers \phpOMS\DataStorage\Database\Connection\SQLiteConnection * @group framework */ public function testInvalidDatabaseName() : void diff --git a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php index c87abe0d1..25a13c0f5 100755 --- a/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php +++ b/tests/DataStorage/Database/Connection/SqlServerConnectionTest.php @@ -45,7 +45,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox Valid sqlserver connection data result in a valid database connection - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testConnect() : void @@ -63,7 +63,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database type returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidDatabaseType() : void @@ -78,7 +78,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database host returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidHost() : void @@ -93,7 +93,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database port returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidPort() : void @@ -108,7 +108,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidDatabase() : void @@ -123,7 +123,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database login returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidLogin() : void @@ -138,7 +138,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database password returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidPassword() : void @@ -153,7 +153,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database type returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidDatabaseTypeName() : void @@ -168,7 +168,7 @@ final class SqlServerConnectionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid database returns a failure - * @covers phpOMS\DataStorage\Database\Connection\SqlServerConnection + * @covers \phpOMS\DataStorage\Database\Connection\SqlServerConnection * @group framework */ public function testInvalidDatabaseName() : void diff --git a/tests/DataStorage/Database/DataMapperAbstractTest.php b/tests/DataStorage/Database/DataMapperAbstractTest.php index ceb2b0873..f57b64f1d 100755 --- a/tests/DataStorage/Database/DataMapperAbstractTest.php +++ b/tests/DataStorage/Database/DataMapperAbstractTest.php @@ -186,12 +186,12 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The datamapper successfully creates a database entry of a model - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperAbstract - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperFactory - * @covers phpOMS\DataStorage\Database\Mapper\ReadMapper - * @covers phpOMS\DataStorage\Database\Mapper\WriteMapper - * @covers phpOMS\DataStorage\Database\Mapper\UpdateMapper - * @covers phpOMS\DataStorage\Database\Mapper\DeleteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperAbstract + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperFactory + * @covers \phpOMS\DataStorage\Database\Mapper\ReadMapper + * @covers \phpOMS\DataStorage\Database\Mapper\WriteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\UpdateMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DeleteMapper * @group framework */ public function testCreate() : void @@ -234,12 +234,12 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The datamapper successfully returns a database entry as model - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperAbstract - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperFactory - * @covers phpOMS\DataStorage\Database\Mapper\ReadMapper - * @covers phpOMS\DataStorage\Database\Mapper\WriteMapper - * @covers phpOMS\DataStorage\Database\Mapper\UpdateMapper - * @covers phpOMS\DataStorage\Database\Mapper\DeleteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperAbstract + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperFactory + * @covers \phpOMS\DataStorage\Database\Mapper\ReadMapper + * @covers \phpOMS\DataStorage\Database\Mapper\WriteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\UpdateMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DeleteMapper * @group framework */ public function testRead() : void @@ -390,12 +390,12 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperAbstract - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperFactory - * @covers phpOMS\DataStorage\Database\Mapper\ReadMapper - * @covers phpOMS\DataStorage\Database\Mapper\WriteMapper - * @covers phpOMS\DataStorage\Database\Mapper\UpdateMapper - * @covers phpOMS\DataStorage\Database\Mapper\DeleteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperAbstract + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperFactory + * @covers \phpOMS\DataStorage\Database\Mapper\ReadMapper + * @covers \phpOMS\DataStorage\Database\Mapper\WriteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\UpdateMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DeleteMapper * @group framework */ public function testFind() : void @@ -442,12 +442,12 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperAbstract - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperFactory - * @covers phpOMS\DataStorage\Database\Mapper\ReadMapper - * @covers phpOMS\DataStorage\Database\Mapper\WriteMapper - * @covers phpOMS\DataStorage\Database\Mapper\UpdateMapper - * @covers phpOMS\DataStorage\Database\Mapper\DeleteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperAbstract + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperFactory + * @covers \phpOMS\DataStorage\Database\Mapper\ReadMapper + * @covers \phpOMS\DataStorage\Database\Mapper\WriteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\UpdateMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DeleteMapper * @group framework */ public function testWithConditional() : void @@ -492,12 +492,12 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The datamapper successfully updates a database entry from a model - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperAbstract - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperFactory - * @covers phpOMS\DataStorage\Database\Mapper\ReadMapper - * @covers phpOMS\DataStorage\Database\Mapper\WriteMapper - * @covers phpOMS\DataStorage\Database\Mapper\UpdateMapper - * @covers phpOMS\DataStorage\Database\Mapper\DeleteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperAbstract + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperFactory + * @covers \phpOMS\DataStorage\Database\Mapper\ReadMapper + * @covers \phpOMS\DataStorage\Database\Mapper\WriteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\UpdateMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DeleteMapper * @group framework */ public function testUpdate() : void @@ -527,12 +527,12 @@ final class DataMapperAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The datamapper successfully deletes a database entry from a model - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperAbstract - * @covers phpOMS\DataStorage\Database\Mapper\DataMapperFactory - * @covers phpOMS\DataStorage\Database\Mapper\ReadMapper - * @covers phpOMS\DataStorage\Database\Mapper\WriteMapper - * @covers phpOMS\DataStorage\Database\Mapper\UpdateMapper - * @covers phpOMS\DataStorage\Database\Mapper\DeleteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperAbstract + * @covers \phpOMS\DataStorage\Database\Mapper\DataMapperFactory + * @covers \phpOMS\DataStorage\Database\Mapper\ReadMapper + * @covers \phpOMS\DataStorage\Database\Mapper\WriteMapper + * @covers \phpOMS\DataStorage\Database\Mapper\UpdateMapper + * @covers \phpOMS\DataStorage\Database\Mapper\DeleteMapper * @group framework */ public function testDelete() : void diff --git a/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php index 1b8dea5aa..9098b8123 100755 --- a/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidConnectionConfigExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Exception\InvalidConnectionConfigException; final class InvalidConnectionConfigExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Exception\InvalidConnectionConfigException + * @covers \phpOMS\DataStorage\Database\Exception\InvalidConnectionConfigException * @group framework */ public function testException() : void diff --git a/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php index 7056e10aa..7b68e2e80 100755 --- a/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidDatabaseTypeExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Exception\InvalidDatabaseTypeException; final class InvalidDatabaseTypeExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Exception\InvalidDatabaseTypeException + * @covers \phpOMS\DataStorage\Database\Exception\InvalidDatabaseTypeException * @group framework */ public function testException() : void diff --git a/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php b/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php index a1fe90e26..c3e06c383 100755 --- a/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php +++ b/tests/DataStorage/Database/Exception/InvalidMapperExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Exception\InvalidMapperException; final class InvalidMapperExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Exception\InvalidMapperException + * @covers \phpOMS\DataStorage\Database\Exception\InvalidMapperException * @group framework */ public function testException() : void diff --git a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php index 819d669cc..1712968d7 100755 --- a/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/OracleGrammarTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Query\Grammar\OracleGrammar; final class OracleGrammarTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Query\Grammar\OracleGrammar + * @covers \phpOMS\DataStorage\Database\Query\Grammar\OracleGrammar * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php index fc43b3323..01b56196b 100755 --- a/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/PostgresGrammarTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Query\Grammar\PostgresGrammar; final class PostgresGrammarTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Query\Grammar\PostgresGrammar + * @covers \phpOMS\DataStorage\Database\Query\Grammar\PostgresGrammar * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/Query/Grammar/SqlServerGrammarTest.php b/tests/DataStorage/Database/Query/Grammar/SqlServerGrammarTest.php index b757ffbe1..afdbe8b5f 100755 --- a/tests/DataStorage/Database/Query/Grammar/SqlServerGrammarTest.php +++ b/tests/DataStorage/Database/Query/Grammar/SqlServerGrammarTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Query\Grammar\SqlServerGrammar; final class SqlServerGrammarTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Query\Grammar\SqlServerGrammar + * @covers \phpOMS\DataStorage\Database\Query\Grammar\SqlServerGrammar * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/Query/WhereTest.php b/tests/DataStorage/Database/Query/WhereTest.php index 0743cca4c..903566afe 100755 --- a/tests/DataStorage/Database/Query/WhereTest.php +++ b/tests/DataStorage/Database/Query/WhereTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Query\Where; final class WhereTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Query\Where + * @covers \phpOMS\DataStorage\Database\Query\Where * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/Schema/BuilderTest.php b/tests/DataStorage/Database/Schema/BuilderTest.php index edc19f660..775a4f645 100755 --- a/tests/DataStorage/Database/Schema/BuilderTest.php +++ b/tests/DataStorage/Database/Schema/BuilderTest.php @@ -220,7 +220,7 @@ final class BuilderTest extends \PHPUnit\Framework\TestCase /** * @testdox The grammar correctly deletes a table - * @covers phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar * @group framework * @dataProvider dbConnectionProvider */ diff --git a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php index bc1315f34..e5919ac36 100755 --- a/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/MysqlGrammarTest.php @@ -40,7 +40,7 @@ final class MysqlGrammarTest extends \PHPUnit\Framework\TestCase /** * @testdox The grammar has the expected default values after initialization - * @covers phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar * @group framework */ public function testDefault() : void @@ -52,8 +52,8 @@ final class MysqlGrammarTest extends \PHPUnit\Framework\TestCase /** * @testdox The the grammar correctly creates and returns a database table - * @covers phpOMS\DataStorage\Database\Schema\Builder - * @covers phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Builder + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar * @group framework */ public function testSchemaInputOutput() : void @@ -86,7 +86,7 @@ final class MysqlGrammarTest extends \PHPUnit\Framework\TestCase /** * @testdox The grammar correctly deletes a table - * @covers phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\MysqlGrammar * @group framework */ public function testDelete() : void diff --git a/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php index faa3c0e43..e0a9f314e 100755 --- a/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/OracleGrammarTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\OracleGrammar; final class OracleGrammarTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Schema\Grammar\OracleGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\OracleGrammar * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php index c207ea5c2..c447cee4a 100755 --- a/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/PostgresGrammarTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\PostgresGrammar; final class PostgresGrammarTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Schema\Grammar\PostgresGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\PostgresGrammar * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php index d24c02e44..b08512156 100755 --- a/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php +++ b/tests/DataStorage/Database/Schema/Grammar/SqlServerGrammarTest.php @@ -22,7 +22,7 @@ use phpOMS\DataStorage\Database\Schema\Grammar\SqlServerGrammar; final class SqlServerGrammarTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\DataStorage\Database\Schema\Grammar\SqlServerGrammar + * @covers \phpOMS\DataStorage\Database\Schema\Grammar\SqlServerGrammar * @group framework */ public function testDefault() : void diff --git a/tests/DataStorage/Database/SchemaMapperTest.php b/tests/DataStorage/Database/SchemaMapperTest.php index 122970610..e9633458b 100755 --- a/tests/DataStorage/Database/SchemaMapperTest.php +++ b/tests/DataStorage/Database/SchemaMapperTest.php @@ -61,7 +61,7 @@ final class SchemaMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The tables can be returned - * @covers phpOMS\DataStorage\Database\SchemaMapper + * @covers \phpOMS\DataStorage\Database\SchemaMapper * @group framework */ public function testTables() : void @@ -74,7 +74,7 @@ final class SchemaMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The fields of a table can be returned - * @covers phpOMS\DataStorage\Database\SchemaMapper + * @covers \phpOMS\DataStorage\Database\SchemaMapper * @group framework */ public function testFields() : void diff --git a/tests/DataStorage/LockExceptionTest.php b/tests/DataStorage/LockExceptionTest.php index af06036b1..412526f94 100755 --- a/tests/DataStorage/LockExceptionTest.php +++ b/tests/DataStorage/LockExceptionTest.php @@ -26,7 +26,7 @@ final class LockExceptionTest extends \PHPUnit\Framework\TestCase { /** * @testdox The lock exception is an instance of the runtime exception - * @covers phpOMS\DataStorage\LockException + * @covers \phpOMS\DataStorage\LockException * @group framework */ public function testException() : void diff --git a/tests/Dispatcher/DispatcherTest.php b/tests/Dispatcher/DispatcherTest.php index 2af67ec07..dfa160fdb 100755 --- a/tests/Dispatcher/DispatcherTest.php +++ b/tests/Dispatcher/DispatcherTest.php @@ -49,7 +49,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox A route can be added and dispatched - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testControllerInputOutput() : void @@ -75,7 +75,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox The dispatcher can dispatch a function/closure - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testClosure() : void @@ -103,7 +103,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox The dispatcher can dispatch a method as string representation of a controller - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testPathMethod() : void @@ -123,7 +123,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox The dispatcher can dispatch a method as array representation of a controller - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testPathMethodInArray() : void @@ -151,7 +151,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox The dispatcher can dispatch a static method as string representation - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testPathStatic() : void @@ -171,7 +171,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox The dispatcher can dispatch multiple destinations after another - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testArray() : void @@ -195,7 +195,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox The dispatcher can pass additional data to the destination - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testArrayWithData() : void @@ -216,7 +216,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid controller path throws a PathException - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testInvalidControllerPath() : void @@ -228,7 +228,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid function path throws a Exception - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testInvalidControllerFunction() : void @@ -240,7 +240,7 @@ final class DispatcherTest extends \PHPUnit\Framework\TestCase /** * @testdox A malformed dispatch path throws UnexpectedValueException - * @covers phpOMS\Dispatcher\Dispatcher + * @covers \phpOMS\Dispatcher\Dispatcher * @group framework */ public function testInvalidControllerString() : void diff --git a/tests/Event/EventManagerTest.php b/tests/Event/EventManagerTest.php index 2b71fca2b..5874d58d3 100755 --- a/tests/Event/EventManagerTest.php +++ b/tests/Event/EventManagerTest.php @@ -37,7 +37,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The event manager has the expected default values after initialization - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDefault() : void @@ -47,7 +47,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox New events can be added - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testAdd() : void @@ -58,7 +58,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Events can be cleared - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testClear() : void @@ -72,7 +72,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Multiple callbacks can be added to an event - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testAddMultiple() : void @@ -84,7 +84,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event gets executed if all conditions and sub conditions are met - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDispatchAfterAllConditions() : void @@ -99,7 +99,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event doesn't get executed if not all conditions and sub conditions are met - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDispatchAfterSomeConditionsInvalid() : void @@ -113,7 +113,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing events cannot be executed/triggered - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testInvalidEventTrigger() : void @@ -123,7 +123,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be triggered with group and id regex matches - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDispatchSimilarGroupAndId() : void @@ -137,7 +137,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be triggered with a fixed group definition and id regex matches - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDispatchSimilarId() : void @@ -151,7 +151,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be triggered with regex group matches and fixed id definition - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDispatchSimilarGroup() : void @@ -166,7 +166,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid regex match will not triggered an event - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDispatchSimilarInvalid() : void @@ -180,7 +180,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be defined to reset after all conditions and subconditions are met. Then all conditions and sub conditions must be met again before it gets triggered again. - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testReset() : void @@ -196,7 +196,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be defined to not reset after all conditions and subconditions are met. Then an event can be triggered any time. - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testNoReset() : void @@ -212,7 +212,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be manually removed/detached - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testDetach() : void @@ -229,7 +229,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing events cannot be manually removed/detached - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testInvalidDetach() : void @@ -244,7 +244,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An event can be defined to automatically remove itself after all conditions and subconditions are met and it is executed - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testRemove() : void @@ -259,7 +259,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Events can be imported from a file - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testImportEvents() : void @@ -273,7 +273,7 @@ final class EventManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid event files cannot be imported and return a failure - * @covers phpOMS\Event\EventManager + * @covers \phpOMS\Event\EventManager * @group framework */ public function testInvalidImportEvents() : void diff --git a/tests/Image/KernelTest.php b/tests/Image/KernelTest.php index 4bb5dcbfb..0f8074969 100755 --- a/tests/Image/KernelTest.php +++ b/tests/Image/KernelTest.php @@ -28,7 +28,7 @@ final class KernelTest extends \PHPUnit\Framework\TestCase * @testdox The kernel can be applied to an image which is then stored in a new file * @group framework * @group slow - * @covers phpOMS\Image\Kernel + * @covers \phpOMS\Image\Kernel */ public function testKernel() : void { diff --git a/tests/Image/SkewTest.php b/tests/Image/SkewTest.php index 6fde54bd1..ac7693ca5 100755 --- a/tests/Image/SkewTest.php +++ b/tests/Image/SkewTest.php @@ -28,7 +28,7 @@ final class SkewTest extends \PHPUnit\Framework\TestCase * @testdox A image can be automatically unskewed * @group framework * @group slow - * @covers phpOMS\Image\Skew + * @covers \phpOMS\Image\Skew */ public function testSkew() : void { diff --git a/tests/Image/ThresholdingTest.php b/tests/Image/ThresholdingTest.php index 3768a89ba..e14e2ac61 100755 --- a/tests/Image/ThresholdingTest.php +++ b/tests/Image/ThresholdingTest.php @@ -27,7 +27,7 @@ final class ThresholdingTest extends \PHPUnit\Framework\TestCase /** * @testdox The thresholding is correctly applied to the image * @group framework - * @covers phpOMS\Image\Thresholding + * @covers \phpOMS\Image\Thresholding */ public function testThresholding() : void { diff --git a/tests/Localization/Defaults/CityMapperTest.php b/tests/Localization/Defaults/CityMapperTest.php index cf9cb420d..8a1fc85f4 100755 --- a/tests/Localization/Defaults/CityMapperTest.php +++ b/tests/Localization/Defaults/CityMapperTest.php @@ -44,7 +44,7 @@ final class CityMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The model can be read from the database - * @covers phpOMS\Localization\Defaults\CityMapper + * @covers \phpOMS\Localization\Defaults\CityMapper * @group framework */ public function testR() : void diff --git a/tests/Localization/Defaults/CityTest.php b/tests/Localization/Defaults/CityTest.php index 8f286f259..60bf25a53 100755 --- a/tests/Localization/Defaults/CityTest.php +++ b/tests/Localization/Defaults/CityTest.php @@ -27,7 +27,7 @@ final class CityTest extends \PHPUnit\Framework\TestCase { /** * @testdox The model has the expected member variables and default values - * @covers phpOMS\Localization\Defaults\City + * @covers \phpOMS\Localization\Defaults\City * @group framework */ public function testDefaults() : void diff --git a/tests/Localization/Defaults/CountryMapperTest.php b/tests/Localization/Defaults/CountryMapperTest.php index 9ea15f43f..a3eac7e13 100755 --- a/tests/Localization/Defaults/CountryMapperTest.php +++ b/tests/Localization/Defaults/CountryMapperTest.php @@ -44,7 +44,7 @@ final class CountryMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The model can be read from the database - * @covers phpOMS\Localization\Defaults\CountryMapper + * @covers \phpOMS\Localization\Defaults\CountryMapper * @group framework */ public function testR() : void diff --git a/tests/Localization/Defaults/CountryTest.php b/tests/Localization/Defaults/CountryTest.php index ee5c76381..44e697935 100755 --- a/tests/Localization/Defaults/CountryTest.php +++ b/tests/Localization/Defaults/CountryTest.php @@ -27,7 +27,7 @@ final class CountryTest extends \PHPUnit\Framework\TestCase { /** * @testdox The model has the expected member variables and default values - * @covers phpOMS\Localization\Defaults\Country + * @covers \phpOMS\Localization\Defaults\Country * @group framework */ public function testDefaults() : void diff --git a/tests/Localization/Defaults/CurrencyMapperTest.php b/tests/Localization/Defaults/CurrencyMapperTest.php index 6c576276c..3ba67b691 100755 --- a/tests/Localization/Defaults/CurrencyMapperTest.php +++ b/tests/Localization/Defaults/CurrencyMapperTest.php @@ -44,7 +44,7 @@ final class CurrencyMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The model can be read from the database - * @covers phpOMS\Localization\Defaults\CurrencyMapper + * @covers \phpOMS\Localization\Defaults\CurrencyMapper * @group framework */ public function testR() : void diff --git a/tests/Localization/Defaults/CurrencyTest.php b/tests/Localization/Defaults/CurrencyTest.php index 98475351c..4b60e2cf9 100755 --- a/tests/Localization/Defaults/CurrencyTest.php +++ b/tests/Localization/Defaults/CurrencyTest.php @@ -27,7 +27,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase { /** * @testdox The model has the expected member variables and default values - * @covers phpOMS\Localization\Defaults\Currency + * @covers \phpOMS\Localization\Defaults\Currency * @group framework */ public function testDefaults() : void diff --git a/tests/Localization/Defaults/IbanMapperTest.php b/tests/Localization/Defaults/IbanMapperTest.php index f4dcecd3b..acbbfdc37 100755 --- a/tests/Localization/Defaults/IbanMapperTest.php +++ b/tests/Localization/Defaults/IbanMapperTest.php @@ -44,7 +44,7 @@ final class IbanMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The model can be read from the database - * @covers phpOMS\Localization\Defaults\IbanMapper + * @covers \phpOMS\Localization\Defaults\IbanMapper * @group framework */ public function testR() : void diff --git a/tests/Localization/Defaults/IbanTest.php b/tests/Localization/Defaults/IbanTest.php index bbf92365f..a7752954b 100755 --- a/tests/Localization/Defaults/IbanTest.php +++ b/tests/Localization/Defaults/IbanTest.php @@ -27,7 +27,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase { /** * @testdox The model has the expected member variables and default values - * @covers phpOMS\Localization\Defaults\Iban + * @covers \phpOMS\Localization\Defaults\Iban * @group framework */ public function testDefaults() : void diff --git a/tests/Localization/Defaults/LanguageMapperTest.php b/tests/Localization/Defaults/LanguageMapperTest.php index fd96411f2..142092c95 100755 --- a/tests/Localization/Defaults/LanguageMapperTest.php +++ b/tests/Localization/Defaults/LanguageMapperTest.php @@ -44,7 +44,7 @@ final class LanguageMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox The model can be read from the database - * @covers phpOMS\Localization\Defaults\LanguageMapper + * @covers \phpOMS\Localization\Defaults\LanguageMapper * @group framework */ public function testR() : void diff --git a/tests/Localization/Defaults/LanguageTest.php b/tests/Localization/Defaults/LanguageTest.php index bfafe2464..f1d707d81 100755 --- a/tests/Localization/Defaults/LanguageTest.php +++ b/tests/Localization/Defaults/LanguageTest.php @@ -27,7 +27,7 @@ final class LanguageTest extends \PHPUnit\Framework\TestCase { /** * @testdox The model has the expected member variables and default values - * @covers phpOMS\Localization\Defaults\Language + * @covers \phpOMS\Localization\Defaults\Language * @group framework */ public function testDefaults() : void diff --git a/tests/Localization/L11nManagerTest.php b/tests/Localization/L11nManagerTest.php index cf77c2e1e..b5fc4fb89 100755 --- a/tests/Localization/L11nManagerTest.php +++ b/tests/Localization/L11nManagerTest.php @@ -40,7 +40,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The localization manager has the expected default values after initialization - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testDefault() : void @@ -54,7 +54,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Language data can be loaded and output as plain text or html - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testLanguageInputOutput() : void @@ -85,7 +85,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox An invalid localization source returns an error string - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testInvalidControllerSource() : void @@ -95,7 +95,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Language data can be loaded from a file - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testLanguageFromLanguageFile() : void @@ -111,7 +111,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Multiple languages can be loaded from a file - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testLanguageMultipleLanguagesFromSingleFile() : void @@ -125,7 +125,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The numeric value can be printed based on the localization - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testGetNumeric() : void @@ -138,7 +138,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The percentage value can be printed based on the localization - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testGetPercentage() : void @@ -150,7 +150,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The currency value can be printed based on the localization - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testGetCurrency() : void @@ -170,7 +170,7 @@ final class L11nManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The datetime value can be printed based on the localization - * @covers phpOMS\Localization\L11nManager + * @covers \phpOMS\Localization\L11nManager * @group framework */ public function testGetDateTime() : void diff --git a/tests/Localization/LocalizationTest.php b/tests/Localization/LocalizationTest.php index 1e670bec7..1df805230 100755 --- a/tests/Localization/LocalizationTest.php +++ b/tests/Localization/LocalizationTest.php @@ -43,7 +43,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The localization has the expected default values after initialization - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testDefault() : void @@ -68,7 +68,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid country code throws InvalidEnumValue - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testInvalidCountry() : void @@ -80,7 +80,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid timezone code throws InvalidEnumValue - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testInvalidTimezone() : void @@ -92,7 +92,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid angle throws InvalidEnumValue - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testInvalidAngle() : void @@ -104,7 +104,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a invalid temperature throws InvalidEnumValue - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testInvalidTemperature() : void @@ -116,7 +116,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The country can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testCountryInputOutput() : void @@ -127,7 +127,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The timezone can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testTimezoneInputOutput() : void @@ -138,7 +138,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The datetime can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testDatetimeInputOutput() : void @@ -149,7 +149,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The decimal can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testDecimalInputOutput() : void @@ -160,7 +160,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The thousands can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testThousandsInputOutput() : void @@ -171,7 +171,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The angle can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testAngleInputOutput() : void @@ -182,7 +182,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The temperature can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testTemperatureInputOutput() : void @@ -193,7 +193,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The weight can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testWeightInputOutput() : void @@ -204,7 +204,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The currency format can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testCurrencyFormatInputOutput() : void @@ -215,7 +215,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The precision can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testPrecisionInputOutput() : void @@ -226,7 +226,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The length can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testLengthInputOutput() : void @@ -237,7 +237,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The area can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testAreaInputOutput() : void @@ -248,7 +248,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The volume can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testVolumeInputOutput() : void @@ -259,7 +259,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox The speed can be set and returned - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testSpeedInputOutput() : void @@ -270,7 +270,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Localization data can be loaded from a locale file - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testLocalizationFromLanguageCode() : void @@ -281,7 +281,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Localization data can be loaded from a locale file - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testLocalizationLoading() : void @@ -292,7 +292,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox Localization data can be serialized and unserialized - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testLocalizationSerialize() : void @@ -308,7 +308,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox If no locale file for a specified country exists or a wild card country is used the first match of a locale file based on the defined language is loaded - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testInvalidCountryLocalizationLoading() : void @@ -319,7 +319,7 @@ final class LocalizationTest extends \PHPUnit\Framework\TestCase /** * @testdox By default the english locale file will be loaded if no other locale file can be found - * @covers phpOMS\Localization\Localization + * @covers \phpOMS\Localization\Localization * @group framework */ public function testMissingLocalizationLoading() : void diff --git a/tests/Log/FileLoggerTest.php b/tests/Log/FileLoggerTest.php index 6c52749d2..4f0119ffe 100755 --- a/tests/Log/FileLoggerTest.php +++ b/tests/Log/FileLoggerTest.php @@ -58,7 +58,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox The logger has the expected default values after initialization - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testDefault() : void @@ -71,7 +71,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox The file logger can automatically create a new instance if none exists - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testFileLoggerInstance() : void @@ -95,7 +95,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox A log file for the output can be specified for the file logger - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testNamedLogFile() : void @@ -116,7 +116,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox If no log file name is specified a log file per date is created - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testUnnamedLogFile() : void @@ -129,7 +129,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox If no logs are performed no log file will be created - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testNoFileIfNoLog() : void @@ -141,7 +141,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox Logs with different levels get correctly stored in the log file - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testLogInputOutput() : void @@ -231,7 +231,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox Log files can be analyzed for the highest perpetrator (IP address) - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testPerpetrator() : void @@ -247,7 +247,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox Logs can be read from the log file - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testReadLogs() : void @@ -285,7 +285,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid log reads return empty log data - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testInvalidReadLogs() : void @@ -303,7 +303,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox A line can be read from a log file - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testReadLine() : void @@ -319,7 +319,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing lines return on read empty log data - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testInvalidReadLine() : void @@ -335,7 +335,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox A verbose file logger automatically outputs log data - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testVerboseLogger() : void @@ -352,7 +352,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox A verbose console log outputs log data - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testVerboseLog() : void @@ -369,7 +369,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid log type throws a InvalidEnumValue - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testLogException() : void @@ -386,7 +386,7 @@ final class FileLoggerTest extends \PHPUnit\Framework\TestCase /** * @testdox The logger can perform timings for internal duration logging - * @covers phpOMS\Log\FileLogger + * @covers \phpOMS\Log\FileLogger * @group framework */ public function testTiming() : void diff --git a/tests/Math/Exception/ZeroDevisionExceptionTest.php b/tests/Math/Exception/ZeroDevisionExceptionTest.php index 0c235faa6..4f92b95f9 100755 --- a/tests/Math/Exception/ZeroDevisionExceptionTest.php +++ b/tests/Math/Exception/ZeroDevisionExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Exception\ZeroDivisionException; final class ZeroDivisionExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Exception\ZeroDivisionException + * @covers \phpOMS\Math\Exception\ZeroDivisionException * @group framework */ public function testException() : void diff --git a/tests/Math/Functions/AlgebraTest.php b/tests/Math/Functions/AlgebraTest.php index 7455ea3fe..1eb145001 100644 --- a/tests/Math/Functions/AlgebraTest.php +++ b/tests/Math/Functions/AlgebraTest.php @@ -59,8 +59,9 @@ final class AlgebraTest extends \PHPUnit\Framework\TestCase Algebra::mult( [3, 4], [ - [1, 5, 7], - [2, 6, 8], + [1, 2], + [5, 6], + [7, 8], ] ) ); diff --git a/tests/Math/Functions/BetaTest.php b/tests/Math/Functions/BetaTest.php index ebd1bc749..aa5344474 100755 --- a/tests/Math/Functions/BetaTest.php +++ b/tests/Math/Functions/BetaTest.php @@ -25,7 +25,7 @@ final class BetaTest extends \PHPUnit\Framework\TestCase { /** * @testdox The beta function can be approximated - * @covers phpOMS\Math\Functions\Beta + * @covers \phpOMS\Math\Functions\Beta * @group framework */ public function testBeta() : void @@ -37,7 +37,7 @@ final class BetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The log beta function can be approximated - * @covers phpOMS\Math\Functions\Beta + * @covers \phpOMS\Math\Functions\Beta * @group framework */ public function testLogBeta() : void @@ -49,7 +49,7 @@ final class BetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The incomplete beta function can be approximated - * @covers phpOMS\Math\Functions\Beta + * @covers \phpOMS\Math\Functions\Beta * @group framework */ public function testIncompleteBeta() : void @@ -63,7 +63,7 @@ final class BetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The regularized beta function can be approximated - * @covers phpOMS\Math\Functions\Beta + * @covers \phpOMS\Math\Functions\Beta * @group framework */ public function testRegularizedBeta() : void diff --git a/tests/Math/Functions/FibonacciTest.php b/tests/Math/Functions/FibonacciTest.php index bf680e32e..eec3f2135 100755 --- a/tests/Math/Functions/FibonacciTest.php +++ b/tests/Math/Functions/FibonacciTest.php @@ -25,7 +25,7 @@ final class FibonacciTest extends \PHPUnit\Framework\TestCase { /** * @testdox A number can be checked if it is a fibonacci number - * @covers phpOMS\Math\Functions\Fibonacci + * @covers \phpOMS\Math\Functions\Fibonacci * @group framework */ public function testFibonacci() : void @@ -39,7 +39,7 @@ final class FibonacciTest extends \PHPUnit\Framework\TestCase /** * @testdox A fibonacci number can be returned by index - * @covers phpOMS\Math\Functions\Fibonacci + * @covers \phpOMS\Math\Functions\Fibonacci * @group framework */ public function testFibonacciByKey() : void @@ -49,7 +49,7 @@ final class FibonacciTest extends \PHPUnit\Framework\TestCase /** * @testdox The binet formula returns fibonacci numbers - * @covers phpOMS\Math\Functions\Fibonacci + * @covers \phpOMS\Math\Functions\Fibonacci * @group framework */ public function testBinet() : void @@ -60,7 +60,7 @@ final class FibonacciTest extends \PHPUnit\Framework\TestCase /** * @testdox The binet formula and the fibonacci formula return the same results - * @covers phpOMS\Math\Functions\Fibonacci + * @covers \phpOMS\Math\Functions\Fibonacci * @group framework */ public function testBinetFib() : void diff --git a/tests/Math/Functions/FunctionsTest.php b/tests/Math/Functions/FunctionsTest.php index b532d5cfb..501eab897 100755 --- a/tests/Math/Functions/FunctionsTest.php +++ b/tests/Math/Functions/FunctionsTest.php @@ -25,7 +25,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase { /** * @testdox The factorial of a number can be calculated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testFactorial() : void @@ -36,7 +36,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The binomial coefficient can be calculated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testBinomialCoefficient() : void @@ -48,7 +48,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The ackerman function can be calculated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testAckermann() : void @@ -61,7 +61,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The multiplicative inverse module can be calculated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testMultiplicativeInverseModulo() : void @@ -73,7 +73,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox A number can be checked if it is odd - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testOdd() : void @@ -86,7 +86,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox A number can be checked if it is even - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testEven() : void @@ -99,7 +99,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The relative number can be calculated on a circular number system (e.g. month in a diverging business year) - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testCircularPosition() : void @@ -111,7 +111,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The error function can be correctly approximated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testErf() : void @@ -124,7 +124,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The complementary error function can be correctly approximated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testErfc() : void @@ -137,7 +137,7 @@ final class FunctionsTest extends \PHPUnit\Framework\TestCase /** * @testdox The generalized hypergeometric function can be correctly calculated - * @covers phpOMS\Math\Functions\Functions + * @covers \phpOMS\Math\Functions\Functions * @group framework */ public function testGeneralizedHypergeometricFunction() : void diff --git a/tests/Math/Functions/GammaTest.php b/tests/Math/Functions/GammaTest.php index bb0c84044..8befc61d1 100755 --- a/tests/Math/Functions/GammaTest.php +++ b/tests/Math/Functions/GammaTest.php @@ -26,7 +26,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase { /** * @testdox The gamma function can be approximated - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testGamma() : void @@ -37,7 +37,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The gamma function can be calculated for integers - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testFactorial() : void @@ -47,7 +47,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The gamma function can be approximated with the spouge formula - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testApproximationSpouge() : void @@ -67,7 +67,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The gamma function can be approximated with the stirling formula - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testApproximationStirling() : void @@ -87,7 +87,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The gamma function can be approximated with the lanzos formula - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testApproximationLanzos() : void @@ -107,7 +107,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The log gamma function can be approximated - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testLogGamma() : void @@ -127,7 +127,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The first incomplete gamma function can be approximated - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testFirstIncompleteGamma() : void @@ -139,7 +139,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The second incomplete gamma function can be approximated - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testSecondIncompleteGamma() : void @@ -151,7 +151,7 @@ final class GammaTest extends \PHPUnit\Framework\TestCase /** * @testdox The regularized incomplete gamma function can be approximated - * @covers phpOMS\Math\Functions\Gamma + * @covers \phpOMS\Math\Functions\Gamma * @group framework */ public function testRegularizedGamma() : void diff --git a/tests/Math/Geometry/ConvexHull/GrahamScanTest.php b/tests/Math/Geometry/ConvexHull/GrahamScanTest.php index c8ec30c1b..1c91389f6 100644 --- a/tests/Math/Geometry/ConvexHull/GrahamScanTest.php +++ b/tests/Math/Geometry/ConvexHull/GrahamScanTest.php @@ -25,7 +25,7 @@ final class GrahamScanTest extends \PHPUnit\Framework\TestCase { /** * @testdox A convex hull can be formed from multiple points on a plane - * @covers phpOMS\Math\Geometry\ConvexHull\GrahamScan + * @covers \phpOMS\Math\Geometry\ConvexHull\GrahamScan * @group framework */ public function testGrahamScan() : void diff --git a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php index 31c832d22..9b6dc8696 100755 --- a/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php +++ b/tests/Math/Geometry/ConvexHull/MonotoneChainTest.php @@ -25,7 +25,7 @@ final class MonotoneChainTest extends \PHPUnit\Framework\TestCase { /** * @testdox A convex hull can be formed from multiple points on a plane - * @covers phpOMS\Math\Geometry\ConvexHull\MonotoneChain + * @covers \phpOMS\Math\Geometry\ConvexHull\MonotoneChain * @group framework */ public function testMonotoneChain() : void diff --git a/tests/Math/Geometry/Shape/D2/CircleTest.php b/tests/Math/Geometry/Shape/D2/CircleTest.php index 5e1248133..4500ee47c 100755 --- a/tests/Math/Geometry/Shape/D2/CircleTest.php +++ b/tests/Math/Geometry/Shape/D2/CircleTest.php @@ -25,7 +25,7 @@ final class CircleTest extends \PHPUnit\Framework\TestCase { /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Circle + * @covers \phpOMS\Math\Geometry\Shape\D2\Circle * @group framework */ public function testSurface() : void @@ -35,7 +35,7 @@ final class CircleTest extends \PHPUnit\Framework\TestCase /** * @testdox The perimeter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Circle + * @covers \phpOMS\Math\Geometry\Shape\D2\Circle * @group framework */ public function testPerimeter() : void @@ -45,7 +45,7 @@ final class CircleTest extends \PHPUnit\Framework\TestCase /** * @testdox The radius can be calculated with the surface - * @covers phpOMS\Math\Geometry\Shape\D2\Circle + * @covers \phpOMS\Math\Geometry\Shape\D2\Circle * @group framework */ public function testRadiusBySurface() : void @@ -55,7 +55,7 @@ final class CircleTest extends \PHPUnit\Framework\TestCase /** * @testdox The radius can be calculated with the perimeter - * @covers phpOMS\Math\Geometry\Shape\D2\Circle + * @covers \phpOMS\Math\Geometry\Shape\D2\Circle * @group framework */ public function testRadiusByPerimeter() : void diff --git a/tests/Math/Geometry/Shape/D2/EllipseTest.php b/tests/Math/Geometry/Shape/D2/EllipseTest.php index 49e0ebd06..e9b92f898 100755 --- a/tests/Math/Geometry/Shape/D2/EllipseTest.php +++ b/tests/Math/Geometry/Shape/D2/EllipseTest.php @@ -25,7 +25,7 @@ final class EllipseTest extends \PHPUnit\Framework\TestCase { /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Ellipse + * @covers \phpOMS\Math\Geometry\Shape\D2\Ellipse * @group framework */ public function testSurface() : void @@ -35,7 +35,7 @@ final class EllipseTest extends \PHPUnit\Framework\TestCase /** * @testdox The perimeter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Ellipse + * @covers \phpOMS\Math\Geometry\Shape\D2\Ellipse * @group framework */ public function testPerimeter() : void diff --git a/tests/Math/Geometry/Shape/D2/PolygonTest.php b/tests/Math/Geometry/Shape/D2/PolygonTest.php index 41c7e029a..3113732d0 100755 --- a/tests/Math/Geometry/Shape/D2/PolygonTest.php +++ b/tests/Math/Geometry/Shape/D2/PolygonTest.php @@ -25,7 +25,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase { /** * @testdox The location of a point can be checked relative to a polygon - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testPoint() : void @@ -51,7 +51,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The interior angle can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testInteriorAngle() : void @@ -77,7 +77,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The exterior angle can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testExteriorAngle() : void @@ -88,7 +88,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The perimeter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testPerimeter() : void @@ -108,7 +108,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The area can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testArea() : void @@ -128,7 +128,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The barycenter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testBarycenter() : void @@ -148,7 +148,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The regular area can be calculated with the side length - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testRegularAreaByLength() : void @@ -158,7 +158,7 @@ final class PolygonTest extends \PHPUnit\Framework\TestCase /** * @testdox The regular area can be calculated with the radius - * @covers phpOMS\Math\Geometry\Shape\D2\Polygon + * @covers \phpOMS\Math\Geometry\Shape\D2\Polygon * @group framework */ public function testRegularAreaByRadius() : void diff --git a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php index b40ee3f1e..68d95ce2d 100755 --- a/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php +++ b/tests/Math/Geometry/Shape/D2/QuadrilateralTest.php @@ -25,7 +25,7 @@ final class QuadrilateralTest extends \PHPUnit\Framework\TestCase { /** * @testdox The area can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Quadrilateral + * @covers \phpOMS\Math\Geometry\Shape\D2\Quadrilateral * @group framework */ public function testArea() : void diff --git a/tests/Math/Geometry/Shape/D2/RectangleTest.php b/tests/Math/Geometry/Shape/D2/RectangleTest.php index 81ac87cd4..f7c6b0bda 100755 --- a/tests/Math/Geometry/Shape/D2/RectangleTest.php +++ b/tests/Math/Geometry/Shape/D2/RectangleTest.php @@ -25,7 +25,7 @@ final class RectangleTest extends \PHPUnit\Framework\TestCase { /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Rectangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Rectangle * @group framework */ public function testSurface() : void @@ -35,7 +35,7 @@ final class RectangleTest extends \PHPUnit\Framework\TestCase /** * @testdox The perimeter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Rectangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Rectangle * @group framework */ public function testPerimeter() : void @@ -45,7 +45,7 @@ final class RectangleTest extends \PHPUnit\Framework\TestCase /** * @testdox The diagonal can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Rectangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Rectangle * @group framework */ public function testDiagonal() : void diff --git a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php index 64fb1e266..ce45d72ca 100755 --- a/tests/Math/Geometry/Shape/D2/TrapezoidTest.php +++ b/tests/Math/Geometry/Shape/D2/TrapezoidTest.php @@ -25,7 +25,7 @@ final class TrapezoidTest extends \PHPUnit\Framework\TestCase { /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Trapezoid + * @covers \phpOMS\Math\Geometry\Shape\D2\Trapezoid * @group framework */ public function testSurface() : void @@ -35,7 +35,7 @@ final class TrapezoidTest extends \PHPUnit\Framework\TestCase /** * @testdox The perimeter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Trapezoid + * @covers \phpOMS\Math\Geometry\Shape\D2\Trapezoid * @group framework */ public function testPerimeter() : void @@ -45,7 +45,7 @@ final class TrapezoidTest extends \PHPUnit\Framework\TestCase /** * @testdox The height can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Trapezoid + * @covers \phpOMS\Math\Geometry\Shape\D2\Trapezoid * @group framework */ public function testHeight() : void @@ -55,7 +55,7 @@ final class TrapezoidTest extends \PHPUnit\Framework\TestCase /** * @testdox The side lengths can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Trapezoid + * @covers \phpOMS\Math\Geometry\Shape\D2\Trapezoid * @group framework */ public function testSideLength() : void diff --git a/tests/Math/Geometry/Shape/D2/TriangleTest.php b/tests/Math/Geometry/Shape/D2/TriangleTest.php index 6efadee92..c2ddfc5fe 100755 --- a/tests/Math/Geometry/Shape/D2/TriangleTest.php +++ b/tests/Math/Geometry/Shape/D2/TriangleTest.php @@ -25,7 +25,7 @@ final class TriangleTest extends \PHPUnit\Framework\TestCase { /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Triangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Triangle * @group framework */ public function testSurface() : void @@ -35,7 +35,7 @@ final class TriangleTest extends \PHPUnit\Framework\TestCase /** * @testdox The perimeter can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Triangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Triangle * @group framework */ public function testPerimeter() : void @@ -45,7 +45,7 @@ final class TriangleTest extends \PHPUnit\Framework\TestCase /** * @testdox The height can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Triangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Triangle * @group framework */ public function testHeight() : void @@ -55,7 +55,7 @@ final class TriangleTest extends \PHPUnit\Framework\TestCase /** * @testdox The hypotenuse can be calculated - * @covers phpOMS\Math\Geometry\Shape\D2\Triangle + * @covers \phpOMS\Math\Geometry\Shape\D2\Triangle * @group framework */ public function testHypot() : void diff --git a/tests/Math/Geometry/Shape/D3/ConeTest.php b/tests/Math/Geometry/Shape/D3/ConeTest.php index 52751c194..a37c4a13e 100755 --- a/tests/Math/Geometry/Shape/D3/ConeTest.php +++ b/tests/Math/Geometry/Shape/D3/ConeTest.php @@ -25,7 +25,7 @@ final class ConeTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cone + * @covers \phpOMS\Math\Geometry\Shape\D3\Cone * @group framework */ public function testVolume() : void @@ -35,7 +35,7 @@ final class ConeTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cone + * @covers \phpOMS\Math\Geometry\Shape\D3\Cone * @group framework */ public function testSurface() : void @@ -45,7 +45,7 @@ final class ConeTest extends \PHPUnit\Framework\TestCase /** * @testdox The slant height can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cone + * @covers \phpOMS\Math\Geometry\Shape\D3\Cone * @group framework */ public function testSlantHeight() : void @@ -55,7 +55,7 @@ final class ConeTest extends \PHPUnit\Framework\TestCase /** * @testdox The height can be calculated with the volume - * @covers phpOMS\Math\Geometry\Shape\D3\Cone + * @covers \phpOMS\Math\Geometry\Shape\D3\Cone * @group framework */ public function testHeightFromVolume() : void diff --git a/tests/Math/Geometry/Shape/D3/CuboidTest.php b/tests/Math/Geometry/Shape/D3/CuboidTest.php index 1d81a630c..9be1625b5 100755 --- a/tests/Math/Geometry/Shape/D3/CuboidTest.php +++ b/tests/Math/Geometry/Shape/D3/CuboidTest.php @@ -25,7 +25,7 @@ final class CuboidTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cuboid + * @covers \phpOMS\Math\Geometry\Shape\D3\Cuboid * @group framework */ public function testVolume() : void @@ -35,7 +35,7 @@ final class CuboidTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cuboid + * @covers \phpOMS\Math\Geometry\Shape\D3\Cuboid * @group framework */ public function testSurface() : void diff --git a/tests/Math/Geometry/Shape/D3/CylinderTest.php b/tests/Math/Geometry/Shape/D3/CylinderTest.php index bfd3d12de..7e1be0a93 100755 --- a/tests/Math/Geometry/Shape/D3/CylinderTest.php +++ b/tests/Math/Geometry/Shape/D3/CylinderTest.php @@ -25,7 +25,7 @@ final class CylinderTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cylinder + * @covers \phpOMS\Math\Geometry\Shape\D3\Cylinder * @group framework */ public function testVolume() : void @@ -35,7 +35,7 @@ final class CylinderTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cylinder + * @covers \phpOMS\Math\Geometry\Shape\D3\Cylinder * @group framework */ public function testSurface() : void @@ -45,7 +45,7 @@ final class CylinderTest extends \PHPUnit\Framework\TestCase /** * @testdox The lateral surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Cylinder + * @covers \phpOMS\Math\Geometry\Shape\D3\Cylinder * @group framework */ public function testLateralSurface() : void diff --git a/tests/Math/Geometry/Shape/D3/PrismTest.php b/tests/Math/Geometry/Shape/D3/PrismTest.php index 9e840b4ae..c291eac23 100755 --- a/tests/Math/Geometry/Shape/D3/PrismTest.php +++ b/tests/Math/Geometry/Shape/D3/PrismTest.php @@ -25,7 +25,7 @@ final class PrismTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated with the length - * @covers phpOMS\Math\Geometry\Shape\D3\Prism + * @covers \phpOMS\Math\Geometry\Shape\D3\Prism * @group framework */ public function testVolumeByLength() : void @@ -35,7 +35,7 @@ final class PrismTest extends \PHPUnit\Framework\TestCase /** * @testdox The volume can be calculated with the radius - * @covers phpOMS\Math\Geometry\Shape\D3\Prism + * @covers \phpOMS\Math\Geometry\Shape\D3\Prism * @group framework */ public function testVolumeByRadius() : void @@ -45,7 +45,7 @@ final class PrismTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Prism + * @covers \phpOMS\Math\Geometry\Shape\D3\Prism * @group framework */ public function testSurface() : void diff --git a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php index 568e0a0ad..3094c750a 100755 --- a/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php +++ b/tests/Math/Geometry/Shape/D3/RectangularPyramidTest.php @@ -25,7 +25,7 @@ final class RectangularPyramidTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\RectangularPyramid + * @covers \phpOMS\Math\Geometry\Shape\D3\RectangularPyramid * @group framework */ public function testVolume() : void @@ -35,7 +35,7 @@ final class RectangularPyramidTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\RectangularPyramid + * @covers \phpOMS\Math\Geometry\Shape\D3\RectangularPyramid * @group framework */ public function testSurface() : void @@ -45,7 +45,7 @@ final class RectangularPyramidTest extends \PHPUnit\Framework\TestCase /** * @testdox The lateral surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\RectangularPyramid + * @covers \phpOMS\Math\Geometry\Shape\D3\RectangularPyramid * @group framework */ public function testLateralSurface() : void diff --git a/tests/Math/Geometry/Shape/D3/SphereTest.php b/tests/Math/Geometry/Shape/D3/SphereTest.php index 9a31f8c71..84f8a1afd 100755 --- a/tests/Math/Geometry/Shape/D3/SphereTest.php +++ b/tests/Math/Geometry/Shape/D3/SphereTest.php @@ -25,7 +25,7 @@ final class SphereTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Sphere + * @covers \phpOMS\Math\Geometry\Shape\D3\Sphere * @group framework */ public function testVolume() : void @@ -36,7 +36,7 @@ final class SphereTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Sphere + * @covers \phpOMS\Math\Geometry\Shape\D3\Sphere * @group framework */ public function testSurface() : void @@ -47,7 +47,7 @@ final class SphereTest extends \PHPUnit\Framework\TestCase /** * @testdox The distance on a sphere can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Sphere + * @covers \phpOMS\Math\Geometry\Shape\D3\Sphere * @group framework */ public function testDistanceOnSphere() : void @@ -57,7 +57,7 @@ final class SphereTest extends \PHPUnit\Framework\TestCase /** * @testdox The sphere can be created by its radius - * @covers phpOMS\Math\Geometry\Shape\D3\Sphere + * @covers \phpOMS\Math\Geometry\Shape\D3\Sphere * @group framework */ public function testGetSphereByRadius() : void @@ -68,7 +68,7 @@ final class SphereTest extends \PHPUnit\Framework\TestCase /** * @testdox The sphere can be created by its volume - * @covers phpOMS\Math\Geometry\Shape\D3\Sphere + * @covers \phpOMS\Math\Geometry\Shape\D3\Sphere * @group framework */ public function testGetSphereByVolume() : void @@ -79,7 +79,7 @@ final class SphereTest extends \PHPUnit\Framework\TestCase /** * @testdox The sphere can be created by its surface - * @covers phpOMS\Math\Geometry\Shape\D3\Sphere + * @covers \phpOMS\Math\Geometry\Shape\D3\Sphere * @group framework */ public function testGetSphereBySurface() : void diff --git a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php index 4e3f94370..2ca873f0c 100755 --- a/tests/Math/Geometry/Shape/D3/TetrahedronTest.php +++ b/tests/Math/Geometry/Shape/D3/TetrahedronTest.php @@ -25,7 +25,7 @@ final class TetrahedronTest extends \PHPUnit\Framework\TestCase { /** * @testdox The volume can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Tetrahedron + * @covers \phpOMS\Math\Geometry\Shape\D3\Tetrahedron * @group framework */ public function testVolume() : void @@ -35,7 +35,7 @@ final class TetrahedronTest extends \PHPUnit\Framework\TestCase /** * @testdox The surface can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Tetrahedron + * @covers \phpOMS\Math\Geometry\Shape\D3\Tetrahedron * @group framework */ public function testSurface() : void @@ -45,7 +45,7 @@ final class TetrahedronTest extends \PHPUnit\Framework\TestCase /** * @testdox The face area can be calculated - * @covers phpOMS\Math\Geometry\Shape\D3\Tetrahedron + * @covers \phpOMS\Math\Geometry\Shape\D3\Tetrahedron * @group framework */ public function testFaceArea() : void diff --git a/tests/Math/Matrix/CholeskyDecompositionTest.php b/tests/Math/Matrix/CholeskyDecompositionTest.php index 22f6546a5..5ee01cd9a 100755 --- a/tests/Math/Matrix/CholeskyDecompositionTest.php +++ b/tests/Math/Matrix/CholeskyDecompositionTest.php @@ -27,7 +27,7 @@ final class CholeskyDecompositionTest extends \PHPUnit\Framework\TestCase { /** * @testdox The decomposition can be created and the original matrix can be computed - * @covers phpOMS\Math\Matrix\CholeskyDecomposition + * @covers \phpOMS\Math\Matrix\CholeskyDecomposition * @group framework */ public function testDecomposition() : void @@ -52,7 +52,7 @@ final class CholeskyDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The decomposition matrix has the expected values - * @covers phpOMS\Math\Matrix\CholeskyDecomposition + * @covers \phpOMS\Math\Matrix\CholeskyDecomposition * @group framework */ public function testL() : void @@ -75,7 +75,7 @@ final class CholeskyDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix can be checked for symmetric positivity - * @covers phpOMS\Math\Matrix\CholeskyDecomposition + * @covers \phpOMS\Math\Matrix\CholeskyDecomposition * @group framework */ public function testSymmetricPositive() : void @@ -105,7 +105,7 @@ final class CholeskyDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The equation Ax = b can be solved - * @covers phpOMS\Math\Matrix\CholeskyDecomposition + * @covers \phpOMS\Math\Matrix\CholeskyDecomposition * @group framework */ public function testSolve() : void @@ -126,7 +126,7 @@ final class CholeskyDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid vector throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\CholeskyDecomposition + * @covers \phpOMS\Math\Matrix\CholeskyDecomposition * @group framework */ public function testInvalidDimension() : void diff --git a/tests/Math/Matrix/EigenvalueDecompositionTest.php b/tests/Math/Matrix/EigenvalueDecompositionTest.php index 6d142b05d..ad942c52a 100755 --- a/tests/Math/Matrix/EigenvalueDecompositionTest.php +++ b/tests/Math/Matrix/EigenvalueDecompositionTest.php @@ -26,7 +26,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase { /** * @testdox A matrix can be checked for symmetry - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testSymmetricSymmetryMatrix() : void @@ -56,7 +56,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The eigenvalues can be calculated for a symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testSymmetricMatrixEigenvalues() : void @@ -76,7 +76,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The V matrix of the decomposition can be calculated for a symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testSymmetricMatrixV() : void @@ -99,7 +99,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The D matrix of the decomposition can be calculated for a symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testSymmetricMatrixD() : void @@ -122,7 +122,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The eigenvalues can be calculated for a none-symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testNonSymmetricMatrixEigenvalues() : void @@ -142,7 +142,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The V matrix of the decomposition can be calculated for a none-symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ /* @@ -169,7 +169,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The D matrix of the decomposition can be calculated for a none-symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testNonSymmetricMatrixD() : void @@ -192,7 +192,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The decomposition can be created and the original matrix can be computed for a symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testCompositeSymmetric() : void @@ -217,7 +217,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The decomposition can be created and the original matrix can be computed for a none-symmetric matrix - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testCompositeNonSymmetric() : void @@ -242,7 +242,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testComplexEigenvalueDecomposition() : void @@ -264,7 +264,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testComplexDivision() : void @@ -288,7 +288,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testComplexDivision2() : void @@ -312,7 +312,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testComplexDivision3() : void @@ -339,7 +339,7 @@ final class EigenvalueDecompositionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\EigenvalueDecomposition + * @covers \phpOMS\Math\Matrix\EigenvalueDecomposition * @group framework */ public function testComplexDivision4() : void diff --git a/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php b/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php index b87a3a6a0..29eafefb3 100755 --- a/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php +++ b/tests/Math/Matrix/Exception/InvalidDimensionExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Matrix\Exception\InvalidDimensionException; final class InvalidDimensionExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Matrix\Exception\InvalidDimensionException + * @covers \phpOMS\Math\Matrix\Exception\InvalidDimensionException * @group framework */ public function testException() : void diff --git a/tests/Math/Matrix/IdentityMatrixTest.php b/tests/Math/Matrix/IdentityMatrixTest.php index 1dbae5875..c03681e9e 100755 --- a/tests/Math/Matrix/IdentityMatrixTest.php +++ b/tests/Math/Matrix/IdentityMatrixTest.php @@ -25,7 +25,7 @@ final class IdentityMatrixTest extends \PHPUnit\Framework\TestCase { /** * @testdox The identity matrix is the identity - * @covers phpOMS\Math\Matrix\IdentityMatrix + * @covers \phpOMS\Math\Matrix\IdentityMatrix * @group framework */ public function testIdentity() : void diff --git a/tests/Math/Matrix/LUDecompositionTest.php b/tests/Math/Matrix/LUDecompositionTest.php index 5bd43e149..ddb1f6204 100755 --- a/tests/Math/Matrix/LUDecompositionTest.php +++ b/tests/Math/Matrix/LUDecompositionTest.php @@ -27,7 +27,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase { /** * @testdox The L matrix of the decomposition can be calculated - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testL() : void @@ -50,7 +50,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The U matrix of the decomposition can be calculated - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testU() : void @@ -73,7 +73,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The matrix can be checked for singularity - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testSingularity() : void @@ -103,7 +103,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The equation Ax = b can be solved for a none-singular matrix - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testSolve() : void @@ -124,7 +124,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The pivots of the decomposition can be calculated - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testPivot() : void @@ -143,7 +143,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The equation Ax = b can be solved for a singular matrix - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testSolveOfSingularMatrix() : void @@ -167,7 +167,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The decomposition can be created and the original matrix can be computed - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testComposition() : void @@ -192,7 +192,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The determinat can be calculated - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testDet() : void @@ -210,7 +210,7 @@ final class LUDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid vector throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\LUDecomposition + * @covers \phpOMS\Math\Matrix\LUDecomposition * @group framework */ public function testInvalidDimension() : void diff --git a/tests/Math/Matrix/MatrixTest.php b/tests/Math/Matrix/MatrixTest.php index 32f0776e4..1ade32a4e 100755 --- a/tests/Math/Matrix/MatrixTest.php +++ b/tests/Math/Matrix/MatrixTest.php @@ -53,7 +53,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix can return its dimension - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testBase() : void @@ -64,7 +64,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix can be right-hand multiplied with a matrix - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testMultMatrix() : void @@ -74,7 +74,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix can be right-hand multiplied with a scalar - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testMultMatrixScalar() : void @@ -84,7 +84,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A scalar can be added to every matrix element - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testAddScalar() : void @@ -97,7 +97,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A scalar can be subtracted from every matrix element - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testSubScalar() : void @@ -110,7 +110,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Two matrices can be added to each other - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testAddMatrix() : void @@ -126,7 +126,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Two matrices can be subtracted from each other - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testSubMatrix() : void @@ -142,7 +142,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox The determinant of a matrix can be calculated - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testDet() : void @@ -159,7 +159,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A symmetric matrix can be validated for symmetry - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testSymmetry() : void @@ -176,7 +176,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-symmetric matrix cannot be validated for symmetry - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInvalidSymmetry() : void @@ -193,7 +193,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix can be transposed - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testTranspose() : void @@ -209,7 +209,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix equation Ax = b can be solved for x - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testSolve() : void @@ -229,7 +229,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox The rank of a matrix can be calculated - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testRank() : void @@ -265,7 +265,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInverse() : void @@ -286,7 +286,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox The upper triangular matrix can be calculated - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testUpperTriangular() : void @@ -295,7 +295,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testLowerTriangular() : void @@ -307,7 +307,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox The matrix elements can be set and returned - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testMatrixInputOutput() : void @@ -340,7 +340,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox A matrix can be accessed like a 1-dimensional array - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testArrayAccess() : void @@ -371,7 +371,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Sub matrices can be extracted from a matrix - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testMatrixExtract() : void @@ -407,7 +407,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting a matrix element outside of the dimensions throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInvalidSetIndexException() : void @@ -424,7 +424,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Returning a matrix element outside of the dimensions throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInvalidGetIndexException() : void @@ -441,7 +441,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Adding a matrix with a different dimension to a matrix throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInvalidDimensionAdd() : void @@ -459,7 +459,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Subtracting a matrix from a different dimension to a matrix throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInvalidDimensionSub() : void @@ -477,7 +477,7 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase /** * @testdox Multiplying a matrix with a different n x m dimension to a matrix throws a InvalidDimensionException - * @covers phpOMS\Math\Matrix\Matrix + * @covers \phpOMS\Math\Matrix\Matrix * @group framework */ public function testInvalidDimensionMult() : void diff --git a/tests/Math/Matrix/QRDecompositionTest.php b/tests/Math/Matrix/QRDecompositionTest.php index 17c821fef..abfd6fcae 100755 --- a/tests/Math/Matrix/QRDecompositionTest.php +++ b/tests/Math/Matrix/QRDecompositionTest.php @@ -27,7 +27,7 @@ final class QRDecompositionTest extends \PHPUnit\Framework\TestCase { /** * @testdox A matrix can be checked if it has a full rank - * @covers phpOMS\Math\Matrix\QRDecomposition + * @covers \phpOMS\Math\Matrix\QRDecomposition * @group framework */ public function testRank() : void @@ -46,7 +46,7 @@ final class QRDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The Q matrix of the decomposition can be calculated - * @covers phpOMS\Math\Matrix\QRDecomposition + * @covers \phpOMS\Math\Matrix\QRDecomposition * @group framework */ public function testQ() : void @@ -69,7 +69,7 @@ final class QRDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The R matrix of the decomposition can be calculated - * @covers phpOMS\Math\Matrix\QRDecomposition + * @covers \phpOMS\Math\Matrix\QRDecomposition * @group framework */ public function testR() : void @@ -92,7 +92,7 @@ final class QRDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The decomposition can be created and the original matrix can be computed - * @covers phpOMS\Math\Matrix\QRDecomposition + * @covers \phpOMS\Math\Matrix\QRDecomposition * @group framework */ public function testComposition() : void @@ -117,7 +117,7 @@ final class QRDecompositionTest extends \PHPUnit\Framework\TestCase /** * @testdox The equation Ax = b can be solved - * @covers phpOMS\Math\Matrix\QRDecomposition + * @covers \phpOMS\Math\Matrix\QRDecomposition * @group framework */ public function testSolve() : void diff --git a/tests/Math/Matrix/VectorTest.php b/tests/Math/Matrix/VectorTest.php index 70200aa89..9deb9f7e2 100755 --- a/tests/Math/Matrix/VectorTest.php +++ b/tests/Math/Matrix/VectorTest.php @@ -25,7 +25,7 @@ final class VectorTest extends \PHPUnit\Framework\TestCase { /** * @testdox The vector has the expected default values after initialization - * @covers phpOMS\Math\Matrix\Vector + * @covers \phpOMS\Math\Matrix\Vector * @group framework */ public function testDefault() : void @@ -39,7 +39,7 @@ final class VectorTest extends \PHPUnit\Framework\TestCase /** * @testdox The vector values can be set and returned - * @covers phpOMS\Math\Matrix\Vector + * @covers \phpOMS\Math\Matrix\Vector * @group framework */ public function testValueInputOutput() : void @@ -55,7 +55,7 @@ final class VectorTest extends \PHPUnit\Framework\TestCase /** * @testdox The vector dimension can be returned - * @covers phpOMS\Math\Matrix\Vector + * @covers \phpOMS\Math\Matrix\Vector * @group framework */ public function testDim() : void diff --git a/tests/Math/Number/ComplexTest.php b/tests/Math/Number/ComplexTest.php index a36a86420..1ba77d1f1 100755 --- a/tests/Math/Number/ComplexTest.php +++ b/tests/Math/Number/ComplexTest.php @@ -25,7 +25,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase { /** * @testdox The complex number has the expected default values after initialization - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testDefault() : void @@ -38,7 +38,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox The real and imaginary part can be set during initialization and returned - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testConstructorInputOutput() : void @@ -50,7 +50,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be added to a complex number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testAddComplex() : void @@ -63,7 +63,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A real number can be added to a complex number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testAddReal() : void @@ -74,7 +74,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be subtracted from a complex number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testSubComplex() : void @@ -87,7 +87,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A real number can be subtracted from a complex number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testSubReal() : void @@ -98,7 +98,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be multiplied with a complex number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testMultComplex() : void @@ -111,7 +111,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A real number can be multiplied with a complex number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testMultReal() : void @@ -122,7 +122,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be divided by a complex number number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testDivComplex() : void @@ -135,7 +135,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be divided by a real number - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testDivReal() : void @@ -146,7 +146,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be conjugated - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testConjugate() : void @@ -158,7 +158,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox The reciprocal of a complex number can be calculated - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testReciprocal() : void @@ -170,7 +170,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox A complex number can be squared - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testSquare() : void @@ -182,7 +182,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox The real power of a complex number can be calculated - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testPower() : void @@ -196,7 +196,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox The absolute value of a complex number can be calculated - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testAbs() : void @@ -208,7 +208,7 @@ final class ComplexTest extends \PHPUnit\Framework\TestCase /** * @testdox The square root of a complex number can be calculated - * @covers phpOMS\Math\Number\Complex + * @covers \phpOMS\Math\Number\Complex * @group framework */ public function testSqrt() : void diff --git a/tests/Math/Number/IntegerTest.php b/tests/Math/Number/IntegerTest.php index a045496fa..d1120a1f2 100755 --- a/tests/Math/Number/IntegerTest.php +++ b/tests/Math/Number/IntegerTest.php @@ -25,7 +25,7 @@ final class IntegerTest extends \PHPUnit\Framework\TestCase { /** * @testdox A value can be checked to be an integer - * @covers phpOMS\Math\Number\Integer + * @covers \phpOMS\Math\Number\Integer * @group framework */ public function testIsInteger() : void @@ -37,7 +37,7 @@ final class IntegerTest extends \PHPUnit\Framework\TestCase /** * @testdox An integer can be factorized - * @covers phpOMS\Math\Number\Integer + * @covers \phpOMS\Math\Number\Integer * @group framework */ public function testFactorization() : void @@ -69,7 +69,7 @@ final class IntegerTest extends \PHPUnit\Framework\TestCase /** * @testdox The Pollard's Roh algorithm calculates a factor of an integer - * @covers phpOMS\Math\Number\Integer + * @covers \phpOMS\Math\Number\Integer * @group framework */ public function testPollardsRho() : void @@ -79,7 +79,7 @@ final class IntegerTest extends \PHPUnit\Framework\TestCase /** * @testdox The Fermat factorization calculates a factor of an integer - * @covers phpOMS\Math\Number\Integer + * @covers \phpOMS\Math\Number\Integer * @group framework */ public function testFermatFactor() : void @@ -89,7 +89,7 @@ final class IntegerTest extends \PHPUnit\Framework\TestCase /** * @testdox A even number for the fermat factorization throws a InvalidArgumentException - * @covers phpOMS\Math\Number\Integer + * @covers \phpOMS\Math\Number\Integer * @group framework */ public function testInvalidFermatParameter() : void @@ -101,7 +101,7 @@ final class IntegerTest extends \PHPUnit\Framework\TestCase /** * @testdox The greatest common divisor can be calculated - * @covers phpOMS\Math\Number\Integer + * @covers \phpOMS\Math\Number\Integer * @group framework */ public function testGCD() : void diff --git a/tests/Math/Number/NaturalTest.php b/tests/Math/Number/NaturalTest.php index 041479eab..9ddc3ef6d 100755 --- a/tests/Math/Number/NaturalTest.php +++ b/tests/Math/Number/NaturalTest.php @@ -25,7 +25,7 @@ final class NaturalTest extends \PHPUnit\Framework\TestCase { /** * @testdox A number can be checked to be natural - * @covers phpOMS\Math\Number\Natural + * @covers \phpOMS\Math\Number\Natural * @group framework */ public function testIsNatural() : void diff --git a/tests/Math/Number/NumbersTest.php b/tests/Math/Number/NumbersTest.php index 897ae0d57..134be0645 100755 --- a/tests/Math/Number/NumbersTest.php +++ b/tests/Math/Number/NumbersTest.php @@ -25,7 +25,7 @@ final class NumbersTest extends \PHPUnit\Framework\TestCase { /** * @testdox A number can be checked to be perfect - * @covers phpOMS\Math\Number\Numbers + * @covers \phpOMS\Math\Number\Numbers * @group framework */ public function testPerfect() : void @@ -38,7 +38,7 @@ final class NumbersTest extends \PHPUnit\Framework\TestCase /** * @testdox A number can be checked to be self-describing - * @covers phpOMS\Math\Number\Numbers + * @covers \phpOMS\Math\Number\Numbers * @group framework */ public function testSelfdescribing() : void @@ -50,7 +50,7 @@ final class NumbersTest extends \PHPUnit\Framework\TestCase /** * @testdox A number can be checked to be squared - * @covers phpOMS\Math\Number\Numbers + * @covers \phpOMS\Math\Number\Numbers * @group framework */ public function testSquare() : void @@ -62,7 +62,7 @@ final class NumbersTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of trailing zeros can be counted - * @covers phpOMS\Math\Number\Numbers + * @covers \phpOMS\Math\Number\Numbers * @group framework */ public function testZeroCounting() : void diff --git a/tests/Math/Number/PrimeTest.php b/tests/Math/Number/PrimeTest.php index 7ab05369a..584c330ee 100755 --- a/tests/Math/Number/PrimeTest.php +++ b/tests/Math/Number/PrimeTest.php @@ -25,7 +25,7 @@ final class PrimeTest extends \PHPUnit\Framework\TestCase { /** * @testdox A number can be checked to be a prime number - * @covers phpOMS\Math\Number\Prime + * @covers \phpOMS\Math\Number\Prime * @group framework */ public function testPrime() : void @@ -37,7 +37,7 @@ final class PrimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A prime number can be generated with the sieve of erathosthenes - * @covers phpOMS\Math\Number\Prime + * @covers \phpOMS\Math\Number\Prime * @group framework */ public function testSieve() : void @@ -48,7 +48,7 @@ final class PrimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A number can be checked to be prime with the rabin test - * @covers phpOMS\Math\Number\Prime + * @covers \phpOMS\Math\Number\Prime * @group framework */ public function testRabin() : void @@ -62,7 +62,7 @@ final class PrimeTest extends \PHPUnit\Framework\TestCase /** * @testdox Mersenne numbers can be calculated - * @covers phpOMS\Math\Number\Prime + * @covers \phpOMS\Math\Number\Prime * @group framework */ public function testMersenne() : void @@ -74,7 +74,7 @@ final class PrimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A number can be checked to be a mersenne number - * @covers phpOMS\Math\Number\Prime + * @covers \phpOMS\Math\Number\Prime * @group framework */ public function testIsMersenne() : void diff --git a/tests/Math/Numerics/IntegrationTest.php b/tests/Math/Numerics/IntegrationTest.php index 6d6c11920..1575d4989 100755 --- a/tests/Math/Numerics/IntegrationTest.php +++ b/tests/Math/Numerics/IntegrationTest.php @@ -28,7 +28,7 @@ final class IntegrationTest extends \PHPUnit\Framework\TestCase { /** * @testdox Integration by summing up rectangle areas from the left side - * @covers phpOMS\Math\Numerics\Integration + * @covers \phpOMS\Math\Numerics\Integration * @group framework */ public function testLRect() : void @@ -41,7 +41,7 @@ final class IntegrationTest extends \PHPUnit\Framework\TestCase /** * @testdox Integration by summing up rectangle areas from the right side - * @covers phpOMS\Math\Numerics\Integration + * @covers \phpOMS\Math\Numerics\Integration * @group framework */ public function testRRect() : void @@ -54,7 +54,7 @@ final class IntegrationTest extends \PHPUnit\Framework\TestCase /** * @testdox Integration by summing up rectangle areas from the middle - * @covers phpOMS\Math\Numerics\Integration + * @covers \phpOMS\Math\Numerics\Integration * @group framework */ public function testMRect() : void @@ -67,7 +67,7 @@ final class IntegrationTest extends \PHPUnit\Framework\TestCase /** * @testdox Integration by summing up trapezoid areas - * @covers phpOMS\Math\Numerics\Integration + * @covers \phpOMS\Math\Numerics\Integration * @group framework */ public function testTrapeze() : void @@ -80,7 +80,7 @@ final class IntegrationTest extends \PHPUnit\Framework\TestCase /** * @testdox Integration by using the simpson formula - * @covers phpOMS\Math\Numerics\Integration + * @covers \phpOMS\Math\Numerics\Integration * @group framework */ public function testSimpson() : void diff --git a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php index 5c56eb8c6..09c3e5bd9 100755 --- a/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/CubicSplineInterpolationTest.php @@ -26,7 +26,7 @@ final class CubicSplineInterpolationTest extends \PHPUnit\Framework\TestCase { /** * @testdox The spline interpolation using the first derivative is correct - * @covers phpOMS\Math\Numerics\Interpolation\CubicSplineInterpolation + * @covers \phpOMS\Math\Numerics\Interpolation\CubicSplineInterpolation * @group framework */ public function testInterpolationFirstDerivative() : void @@ -47,7 +47,7 @@ final class CubicSplineInterpolationTest extends \PHPUnit\Framework\TestCase /** * @testdox The spline interpolation using the second derivative is correct - * @covers phpOMS\Math\Numerics\Interpolation\CubicSplineInterpolation + * @covers \phpOMS\Math\Numerics\Interpolation\CubicSplineInterpolation * @group framework */ public function testInterpolationSecondDerivative() : void @@ -68,7 +68,7 @@ final class CubicSplineInterpolationTest extends \PHPUnit\Framework\TestCase /** * @testdox The spline interpolation for out of bounds values uses linear extrapolation - * @covers phpOMS\Math\Numerics\Interpolation\CubicSplineInterpolation + * @covers \phpOMS\Math\Numerics\Interpolation\CubicSplineInterpolation * @group framework */ public function testInterpolationUnderOverflow() : void diff --git a/tests/Math/Numerics/Interpolation/LagrangeInterpolationTest.php b/tests/Math/Numerics/Interpolation/LagrangeInterpolationTest.php index f697e7525..21c0df05f 100755 --- a/tests/Math/Numerics/Interpolation/LagrangeInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/LagrangeInterpolationTest.php @@ -25,7 +25,7 @@ final class LagrangeInterpolationTest extends \PHPUnit\Framework\TestCase { /** * @testdox The lagrange interpolation is correct - * @covers phpOMS\Math\Numerics\Interpolation\LagrangeInterpolation + * @covers \phpOMS\Math\Numerics\Interpolation\LagrangeInterpolation * @group framework */ public function testInterpolation() : void diff --git a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php index cc6b16e2d..c29455194 100755 --- a/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php +++ b/tests/Math/Numerics/Interpolation/LinearInterpolationTest.php @@ -25,7 +25,7 @@ final class LinearInterpolationTest extends \PHPUnit\Framework\TestCase { /** * @testdox The linear interpolation is correct - * @covers phpOMS\Math\Numerics\Interpolation\LinearInterpolation + * @covers \phpOMS\Math\Numerics\Interpolation\LinearInterpolation * @group framework */ public function testInterpolation() : void diff --git a/tests/Math/Parser/EvaluatorTest.php b/tests/Math/Parser/EvaluatorTest.php index fa998aa8a..2cc37b2e2 100755 --- a/tests/Math/Parser/EvaluatorTest.php +++ b/tests/Math/Parser/EvaluatorTest.php @@ -25,7 +25,7 @@ final class EvaluatorTest extends \PHPUnit\Framework\TestCase { /** * @testdox Basic formulas using +, -, *, /, () and ^ can be evaluated - * @covers phpOMS\Math\Parser\Evaluator + * @covers \phpOMS\Math\Parser\Evaluator * @group framework */ public function testBasicEvaluation() : void @@ -36,7 +36,7 @@ final class EvaluatorTest extends \PHPUnit\Framework\TestCase /** * @testdox Badly formed formulas return null as result - * @covers phpOMS\Math\Parser\Evaluator + * @covers \phpOMS\Math\Parser\Evaluator * @group framework */ public function testInvalidEvaluation() : void diff --git a/tests/Math/Statistic/AverageTest.php b/tests/Math/Statistic/AverageTest.php index 8089c8d1e..393491b32 100755 --- a/tests/Math/Statistic/AverageTest.php +++ b/tests/Math/Statistic/AverageTest.php @@ -25,7 +25,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase { /** * @testdox The average change of a dataset is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testAverage() : void @@ -35,7 +35,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The average mean of angles is calculated correctly - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testAngleMean() : void @@ -51,7 +51,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The arithmetic mean is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testArithmeticMean() : void @@ -62,7 +62,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The weighted mean is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testWeightedAverage() : void @@ -75,7 +75,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The geometric mean is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testGeometricMean() : void @@ -86,7 +86,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The harmonic mean is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testHarmonicMean() : void @@ -97,7 +97,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The moving average is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testMovingAverage() : void @@ -116,7 +116,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The weighted moving average is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testWeightedMovingAverage() : void @@ -130,7 +130,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox Different weight and dataset dimensions throw a InvalidDimensionException - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidWeightedAverageDimension() : void @@ -142,7 +142,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset for the arithmetic mean throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidArithmeticMeanZeroDivision() : void @@ -154,7 +154,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset for the moving average throws a Exception - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidMovingAverageZeroDivision() : void @@ -166,7 +166,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset for the harmonic mean throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidHarmonicMeanZeroDivision() : void @@ -178,7 +178,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset for the geometric mean throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidGeometricMean() : void @@ -189,7 +189,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidAngleMean() : void @@ -200,7 +200,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidAngleMean2() : void @@ -212,7 +212,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox A dataset with a 0 element throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testInvalidHarmonicMean() : void @@ -224,7 +224,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The mode is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testMode() : void @@ -235,7 +235,7 @@ final class AverageTest extends \PHPUnit\Framework\TestCase /** * @testdox The median is correctly calculated - * @covers phpOMS\Math\Statistic\Average + * @covers \phpOMS\Math\Statistic\Average * @group framework */ public function testMedian() : void diff --git a/tests/Math/Statistic/BasicTest.php b/tests/Math/Statistic/BasicTest.php index dc84997c7..73a61dc52 100755 --- a/tests/Math/Statistic/BasicTest.php +++ b/tests/Math/Statistic/BasicTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Statistic\Basic; final class BasicTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Statistic\Basic + * @covers \phpOMS\Math\Statistic\Basic * @group framework */ public function testFrequency() : void diff --git a/tests/Math/Statistic/Forecast/ErrorTest.php b/tests/Math/Statistic/Forecast/ErrorTest.php index 430c9aafc..079d3bcfe 100755 --- a/tests/Math/Statistic/Forecast/ErrorTest.php +++ b/tests/Math/Statistic/Forecast/ErrorTest.php @@ -24,7 +24,7 @@ use phpOMS\Utils\ArrayUtils; final class ErrorTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testForecastError() : void @@ -47,7 +47,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testErrorPercentage() : void @@ -71,7 +71,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testMeanErrors() : void @@ -89,7 +89,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testMASE() : void @@ -111,7 +111,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testMSSE() : void @@ -136,7 +136,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testScaledError() : void @@ -148,7 +148,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testSSE() : void @@ -159,7 +159,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testCoefficientOfDetermination() : void @@ -173,7 +173,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testMAPE() : void @@ -185,7 +185,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testSMAPE() : void @@ -197,7 +197,7 @@ final class ErrorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\Forecast\Error + * @covers \phpOMS\Math\Statistic\Forecast\Error * @group framework */ public function testMAD() : void diff --git a/tests/Math/Statistic/MeasureOfDispersionTest.php b/tests/Math/Statistic/MeasureOfDispersionTest.php index a59f59cc8..1eab20734 100755 --- a/tests/Math/Statistic/MeasureOfDispersionTest.php +++ b/tests/Math/Statistic/MeasureOfDispersionTest.php @@ -25,7 +25,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase { /** * @testdox The range of a dataset is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testRange() : void @@ -35,7 +35,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The standard deviation is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testStandardDeviationSample() : void @@ -45,7 +45,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The empirical covariance is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testEmpiricalCovariance() : void @@ -61,7 +61,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The empirical covariance on a sample is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testSampleCovariance() : void @@ -77,7 +77,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The sample variance is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testVarianceSample() : void @@ -87,7 +87,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The population/empirical variance is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testVariancePopulation() : void @@ -97,7 +97,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The mean deviations are correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testDeviation() : void @@ -109,7 +109,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The mean deviations for every dataset element is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testDeviationArray() : void @@ -135,7 +135,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The empirical variation coefficient is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testEmpiricalVariationCoefficient() : void @@ -145,7 +145,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The interquartile range is correctly calculated - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testIQR() : void @@ -156,7 +156,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox The empirical variation coefficient with a mean of 0 throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testInvalidEmpiricalVariationCoefficient() : void @@ -168,7 +168,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset in the empirical covariance throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testInvalidEmpiricalCovariance() : void @@ -180,7 +180,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dataset sizes in the empirical covariance throw a InvalidDimensionException - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testInvalidEmpiricalCovarianceDimension() : void @@ -192,7 +192,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset in the sample variance throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testInvalidSampleVariance() : void @@ -204,7 +204,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase /** * @testdox An empty dataset in the empirical/population variance throws a ZeroDivisionException - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testInvalidEmpiricalVariance() : void @@ -215,7 +215,7 @@ final class MeasureOfDispersionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Statistic\MeasureOfDispersion + * @covers \phpOMS\Math\Statistic\MeasureOfDispersion * @group framework */ public function testInvalidSampleCovarianceDimension() : void diff --git a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php index dfb1038a8..d869abbb2 100755 --- a/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BernoulliDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\BernoulliDistribution; final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testPmf() : void @@ -32,7 +32,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testMode() : void @@ -43,7 +43,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testMean() : void @@ -52,7 +52,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testCdf() : void @@ -63,7 +63,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testMedian() : void @@ -74,7 +74,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testVariance() : void @@ -86,7 +86,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testStandardDeviation() : void @@ -98,7 +98,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testSkewness() : void @@ -110,7 +110,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testExKurtosis() : void @@ -122,7 +122,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testEntropy() : void @@ -134,7 +134,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testMgf() : void @@ -147,7 +147,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testFisherInformation() : void @@ -159,7 +159,7 @@ final class BernoulliDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BernoulliDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BernoulliDistribution * @group framework */ public function testInvalidPmfParameter() : void diff --git a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php index 9bb745fed..35bd60484 100755 --- a/tests/Math/Stochastic/Distribution/BetaDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BetaDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\BetaDistribution; final class BetaDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testMean() : void @@ -31,7 +31,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testMode() : void @@ -43,7 +43,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testVariance() : void @@ -52,7 +52,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testStandardDeviation() : void @@ -61,7 +61,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testSkewness() : void @@ -72,7 +72,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testExKurtosis() : void @@ -81,7 +81,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testPdf() : void @@ -90,7 +90,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testCdf() : void @@ -99,7 +99,7 @@ final class BetaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BetaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BetaDistribution * @group framework */ public function testMgf() : void diff --git a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php index 6c1f43ee3..57272a83c 100755 --- a/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/BinomialDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\BinomialDistribution; final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testPmf() : void @@ -35,7 +35,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testCdf() : void @@ -48,7 +48,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testMean() : void @@ -60,7 +60,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testMedian() : void @@ -72,7 +72,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testMode() : void @@ -84,7 +84,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testVariance() : void @@ -96,7 +96,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testStandardDeviation() : void @@ -108,7 +108,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testSkewness() : void @@ -120,7 +120,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testExKurtosis() : void @@ -132,7 +132,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testMgf() : void @@ -145,7 +145,7 @@ final class BinomialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\BinomialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\BinomialDistribution * @group framework */ public function testFisherInformation() : void diff --git a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php index 4f31ccab7..fc7f0ee71 100755 --- a/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/CauchyDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\CauchyDistribution; final class CauchyDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\CauchyDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\CauchyDistribution * @group framework */ public function testMedianMode() : void @@ -32,7 +32,7 @@ final class CauchyDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\CauchyDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\CauchyDistribution * @group framework */ public function testPdf() : void @@ -45,7 +45,7 @@ final class CauchyDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\CauchyDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\CauchyDistribution * @group framework */ public function testCdf() : void @@ -58,7 +58,7 @@ final class CauchyDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\CauchyDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\CauchyDistribution * @group framework */ public function testEntropy() : void diff --git a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php index 889eb3bd3..63a102b86 100755 --- a/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ChiSquaredDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution; final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testHypothesisFalse() : void @@ -43,7 +43,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testDegreesOfFreedom() : void @@ -57,7 +57,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testMode() : void @@ -66,7 +66,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testMean() : void @@ -77,7 +77,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testVariance() : void @@ -88,7 +88,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testStandardDeviation() : void @@ -99,7 +99,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testMedian() : void @@ -110,7 +110,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testSkewness() : void @@ -121,7 +121,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testExKurtosis() : void @@ -132,7 +132,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testMgdf() : void @@ -144,7 +144,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testPdf() : void @@ -153,7 +153,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testCdf() : void @@ -162,7 +162,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testHypothesisSizeException() : void @@ -173,7 +173,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testHypothesisDegreesOfFreedomException() : void @@ -184,7 +184,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testPdfOutOfBoundsException() : void @@ -195,7 +195,7 @@ final class ChiSquaredDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ChiSquaredDistribution * @group framework */ public function testMgfOutOfBoundsException() : void diff --git a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php index 9dc888d8b..4ff5cd94c 100755 --- a/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ExponentialDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\ExponentialDistribution; final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testPdf() : void @@ -34,7 +34,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testCdf() : void @@ -46,7 +46,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testMean() : void @@ -55,7 +55,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testMode() : void @@ -64,7 +64,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testMedian() : void @@ -73,7 +73,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testMgf() : void @@ -85,7 +85,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testVariance() : void @@ -94,7 +94,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testStandardDeviation() : void @@ -103,7 +103,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testExKurtosis() : void @@ -112,7 +112,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testSkewness() : void @@ -121,7 +121,7 @@ final class ExponentialDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ExponentialDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ExponentialDistribution * @group framework */ public function testMgfException() : void diff --git a/tests/Math/Stochastic/Distribution/FDistributionTest.php b/tests/Math/Stochastic/Distribution/FDistributionTest.php index dc7a34347..a474dccbc 100755 --- a/tests/Math/Stochastic/Distribution/FDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/FDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\FDistribution; final class FDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testMean() : void @@ -32,7 +32,7 @@ final class FDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testMode() : void @@ -43,7 +43,7 @@ final class FDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testVariance() : void @@ -54,7 +54,7 @@ final class FDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testStandardDeviation() : void @@ -65,7 +65,7 @@ final class FDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testSkewness() : void @@ -75,7 +75,7 @@ final class FDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testPdf() : void @@ -84,7 +84,7 @@ final class FDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\FDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\FDistribution * @group framework */ public function testCdf() : void diff --git a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php index 0350dc45d..6d6ac0093 100755 --- a/tests/Math/Stochastic/Distribution/GammaDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/GammaDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\GammaDistribution; final class GammaDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testPdfScale() : void @@ -31,7 +31,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testPdfAlphaBete() : void @@ -40,7 +40,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testCdfScale() : void @@ -49,7 +49,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testCdfAlphaBete() : void @@ -58,7 +58,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testPdfIntegerScale() : void @@ -68,7 +68,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testPdfIntegerRate() : void @@ -77,7 +77,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testMeanScale() : void @@ -86,7 +86,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testMeanRate() : void @@ -97,7 +97,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testVarianceScale() : void @@ -106,7 +106,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testVarianceRate() : void @@ -117,7 +117,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testStandardDeviationScale() : void @@ -126,7 +126,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testStandardDeviationRate() : void @@ -137,7 +137,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testExKurtosis() : void @@ -146,7 +146,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testSkewness() : void @@ -155,7 +155,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testMgfScale() : void @@ -167,7 +167,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testMgfRate() : void @@ -179,7 +179,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testModeScale() : void @@ -188,7 +188,7 @@ final class GammaDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GammaDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GammaDistribution * @group framework */ public function testModeRate() : void diff --git a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php index b5bda969a..0cd2cd8f3 100755 --- a/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/GeometricDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\GeometricDistribution; final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testPmf() : void @@ -34,7 +34,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testCdf() : void @@ -47,7 +47,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testMode() : void @@ -56,7 +56,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testMean() : void @@ -66,7 +66,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testVariance() : void @@ -77,7 +77,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testgetStandardDeviation() : void @@ -88,7 +88,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testSkewness() : void @@ -99,7 +99,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testExKurtosis() : void @@ -110,7 +110,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testMedian() : void @@ -121,7 +121,7 @@ final class GeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\GeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\GeometricDistribution * @group framework */ public function testMgf() : void diff --git a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php index 32814d049..2be7dd5e7 100755 --- a/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/HypergeometricDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution; final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testMean() : void @@ -31,7 +31,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testVariance() : void @@ -40,7 +40,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testStandardDeviation() : void @@ -49,7 +49,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testSkewness() : void @@ -58,7 +58,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testExKurtosis() : void @@ -67,7 +67,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testMode() : void @@ -80,7 +80,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testPmf() : void @@ -89,7 +89,7 @@ final class HypergeometricDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\HypergeometricDistribution * @group framework */ public function testCdf() : void diff --git a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php index 7ba31d441..0ff8faefe 100755 --- a/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LaplaceDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\LaplaceDistribution; final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testPdf() : void @@ -35,7 +35,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testCdf() : void @@ -48,7 +48,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testMode() : void @@ -57,7 +57,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testMean() : void @@ -66,7 +66,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testMedian() : void @@ -75,7 +75,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testExKurtosis() : void @@ -84,7 +84,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testSkewness() : void @@ -93,7 +93,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testVariance() : void @@ -104,7 +104,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testStandardDeviation() : void @@ -115,7 +115,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testMgf() : void @@ -128,7 +128,7 @@ final class LaplaceDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LaplaceDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LaplaceDistribution * @group framework */ public function testMgfException() : void diff --git a/tests/Math/Stochastic/Distribution/LogDistributionTest.php b/tests/Math/Stochastic/Distribution/LogDistributionTest.php index 21ececde1..ef9970623 100755 --- a/tests/Math/Stochastic/Distribution/LogDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\LogDistribution; final class LogDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testPmf() : void @@ -37,7 +37,7 @@ final class LogDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testCdf() : void @@ -52,7 +52,7 @@ final class LogDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testMean() : void @@ -63,7 +63,7 @@ final class LogDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testMode() : void @@ -72,7 +72,7 @@ final class LogDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testVariance() : void @@ -86,7 +86,7 @@ final class LogDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testStandardDeviation() : void @@ -100,7 +100,7 @@ final class LogDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogDistribution * @group framework */ public function testMgf() : void diff --git a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php index 0dd9d6a21..67d4c4545 100755 --- a/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogNormalDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\LogNormalDistribution; final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testPdf() : void @@ -31,7 +31,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testCdf() : void @@ -40,7 +40,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testMean() : void @@ -49,7 +49,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testVariance() : void @@ -61,7 +61,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testStandardDeviation() : void @@ -78,7 +78,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testSkewness() : void @@ -90,7 +90,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testExKurtosis() : void @@ -102,7 +102,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testMedian() : void @@ -111,7 +111,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testMode() : void @@ -120,7 +120,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testEntropy() : void @@ -132,7 +132,7 @@ final class LogNormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogNormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogNormalDistribution * @group framework */ public function testFisherInformation() : void diff --git a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php index 7b504ba6c..5e492b30e 100755 --- a/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/LogisticDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\LogisticDistribution; final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testPdf() : void @@ -38,7 +38,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testCdf() : void @@ -54,7 +54,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testMode() : void @@ -63,7 +63,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testMean() : void @@ -72,7 +72,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testMedian() : void @@ -81,7 +81,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testVariance() : void @@ -94,7 +94,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testStandardDeviation() : void @@ -107,7 +107,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testSkewness() : void @@ -116,7 +116,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testExKurtosis() : void @@ -125,7 +125,7 @@ final class LogisticDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\LogisticDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\LogisticDistribution * @group framework */ public function testEntropy() : void diff --git a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php index 3ea507ceb..83884ca55 100755 --- a/tests/Math/Stochastic/Distribution/NormalDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/NormalDistributionTest.php @@ -24,7 +24,7 @@ use phpOMS\Math\Stochastic\Distribution\NormalDistribution; final class NormalDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testPdf() : void @@ -37,7 +37,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testCdf() : void @@ -50,7 +50,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testMean() : void @@ -61,7 +61,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testMedian() : void @@ -72,7 +72,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testMode() : void @@ -83,7 +83,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testSkewness() : void @@ -92,7 +92,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testExKurtosis() : void @@ -101,7 +101,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testVariance() : void @@ -112,7 +112,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testStandardDeviation() : void @@ -123,7 +123,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testSampleSizeCalculation() : void @@ -132,7 +132,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testSampleSizeInfiniteCalculation() : void @@ -141,7 +141,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testMgf() : void @@ -157,7 +157,7 @@ final class NormalDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\NormalDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\NormalDistribution * @group framework */ public function testFisherInformation() : void diff --git a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php index 6fea733c0..7e50db7d8 100755 --- a/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/ParetoDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\ParetoDistribution; final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testPdf() : void @@ -31,7 +31,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testCdf() : void @@ -40,7 +40,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testMean() : void @@ -50,7 +50,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testVariance() : void @@ -60,7 +60,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testStandardDeviation() : void @@ -69,7 +69,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testExKurtosis() : void @@ -79,7 +79,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testSkewness() : void @@ -89,7 +89,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testMedian() : void @@ -98,7 +98,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testMode() : void @@ -107,7 +107,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testEntropy() : void @@ -119,7 +119,7 @@ final class ParetoDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ParetoDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\ParetoDistribution * @group framework */ public function testFisherInformation() : void diff --git a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php index b45992c4c..7c846973b 100755 --- a/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/PoissonDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\PoissonDistribution; final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testPmf() : void @@ -34,7 +34,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testCdf() : void @@ -46,7 +46,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testMode() : void @@ -57,7 +57,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testMean() : void @@ -68,7 +68,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testVariance() : void @@ -79,7 +79,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testStandardDeviation() : void @@ -90,7 +90,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testSkewness() : void @@ -101,7 +101,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testExKurtosis() : void @@ -112,7 +112,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testMedian() : void @@ -123,7 +123,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testFisherInformation() : void @@ -134,7 +134,7 @@ final class PoissonDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\PoissonDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\PoissonDistribution * @group framework */ public function testMgf() : void diff --git a/tests/Math/Stochastic/Distribution/TDistributionTest.php b/tests/Math/Stochastic/Distribution/TDistributionTest.php index 944179da6..5c3d5d23e 100755 --- a/tests/Math/Stochastic/Distribution/TDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/TDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\TDistribution; final class TDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testMean() : void @@ -31,7 +31,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testMedian() : void @@ -40,7 +40,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testMode() : void @@ -49,7 +49,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testVariance() : void @@ -59,7 +59,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testStandardDeviation() : void @@ -69,7 +69,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testExKurtosis() : void @@ -79,7 +79,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testSkewness() : void @@ -88,7 +88,7 @@ final class TDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\TDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\TDistribution * @group framework */ public function testCdf() : void diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php index 9c767282e..807c79345 100755 --- a/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php +++ b/tests/Math/Stochastic/Distribution/UniformDistributionContinuousTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous; final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testPdf() : void @@ -36,7 +36,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testCdf() : void @@ -51,7 +51,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testMode() : void @@ -69,7 +69,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testMean() : void @@ -81,7 +81,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testMedian() : void @@ -93,7 +93,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testVariance() : void @@ -105,7 +105,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testStandardDeviation() : void @@ -117,7 +117,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testSkewness() : void @@ -126,7 +126,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testExKurtosis() : void @@ -135,7 +135,7 @@ final class UniformDistributionContinuousTest extends \PHPUnit\Framework\TestCas } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionContinuous * @group framework */ public function testMgf() : void diff --git a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php index d0548ce3e..d22c6499a 100755 --- a/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php +++ b/tests/Math/Stochastic/Distribution/UniformDistributionDiscreteTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete; final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testPmf() : void @@ -34,7 +34,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testCdf() : void @@ -47,7 +47,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testSkewness() : void @@ -56,7 +56,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testMean() : void @@ -68,7 +68,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testMedian() : void @@ -80,7 +80,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testVariance() : void @@ -92,7 +92,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testStandardDeviation() : void @@ -104,7 +104,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testExKurtosis() : void @@ -120,7 +120,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testMgf() : void @@ -132,7 +132,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testCdfExceptionUpper() : void @@ -143,7 +143,7 @@ final class UniformDistributionDiscreteTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete + * @covers \phpOMS\Math\Stochastic\Distribution\UniformDistributionDiscrete * @group framework */ public function testCdfExceptionLower() : void diff --git a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php index 635e42fa5..c649c6816 100755 --- a/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php +++ b/tests/Math/Stochastic/Distribution/WeibullDistributionTest.php @@ -22,7 +22,7 @@ use phpOMS\Math\Stochastic\Distribution\WeibullDistribution; final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testPdf() : void @@ -32,7 +32,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testCdf() : void @@ -42,7 +42,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testMean() : void @@ -51,7 +51,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testMedian() : void @@ -60,7 +60,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testMode() : void @@ -69,7 +69,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testVariance() : void @@ -78,7 +78,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testStandardDeviation() : void @@ -87,7 +87,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testEntropy() : void @@ -96,7 +96,7 @@ final class WeibullDistributionTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\WeibullDistribution + * @covers \phpOMS\Math\Stochastic\Distribution\WeibullDistribution * @group framework */ public function testSkewness() : void diff --git a/tests/Math/Stochastic/Distribution/ZTestingTest.php b/tests/Math/Stochastic/Distribution/ZTestingTest.php index 9ccd107f4..359a55a08 100644 --- a/tests/Math/Stochastic/Distribution/ZTestingTest.php +++ b/tests/Math/Stochastic/Distribution/ZTestingTest.php @@ -28,7 +28,7 @@ final class ZTestingTest extends \PHPUnit\Framework\TestCase // http://sphweb.bumc.bu.edu/otlt/MPH-Modules/BS/BS704_HypothesisTesting-ChiSquare/BS704_HypothesisTesting-ChiSquare_print.html /** - * @covers phpOMS\Math\Stochastic\Distribution\ZTesting + * @covers \phpOMS\Math\Stochastic\Distribution\ZTesting * @group framework */ public function testHypothesisFalse() : void @@ -44,7 +44,7 @@ final class ZTestingTest extends \PHPUnit\Framework\TestCase // https://support.microsoft.com/en-us/office/z-test-function-d633d5a3-2031-4614-a016-92180ad82bee?ui=en-us&rs=en-us&ad=us /** - * @covers phpOMS\Math\Stochastic\Distribution\ZTesting + * @covers \phpOMS\Math\Stochastic\Distribution\ZTesting * @group framework */ public function testZTest() : void @@ -53,7 +53,7 @@ final class ZTestingTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Math\Stochastic\Distribution\ZTesting + * @covers \phpOMS\Math\Stochastic\Distribution\ZTesting * @group framework */ public function testZTestValues() : void diff --git a/tests/Math/Topology/Metrics2DTest.php b/tests/Math/Topology/Metrics2DTest.php index 1cd66fecc..80f75cddf 100755 --- a/tests/Math/Topology/Metrics2DTest.php +++ b/tests/Math/Topology/Metrics2DTest.php @@ -25,7 +25,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase { /** * @testdox The manhattan distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testManhattan() : void @@ -38,7 +38,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The euclidean distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testEuclidean() : void @@ -52,7 +52,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The chebyshev distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testChebyshev() : void @@ -65,7 +65,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The octile distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testOctile() : void @@ -79,7 +79,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The minkowski distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testMinkowski() : void @@ -93,7 +93,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The canberra distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testCanberra() : void @@ -107,7 +107,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The bray-curtis distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testBrayCurtis() : void @@ -121,7 +121,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The angular distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testAngularSeparation() : void @@ -135,7 +135,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The hamming distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testHammingDistance() : void @@ -148,7 +148,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox The ulam distance can be calculated - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testUlam() : void @@ -161,7 +161,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the hamming metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testInvalidHammingDimension() : void @@ -173,7 +173,7 @@ final class Metrics2DTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the ulam metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\Metrics2D + * @covers \phpOMS\Math\Topology\Metrics2D * @group framework */ public function testInvalidUlamDimension() : void diff --git a/tests/Math/Topology/MetricsNDTest.php b/tests/Math/Topology/MetricsNDTest.php index 5150ad384..62ea72c49 100755 --- a/tests/Math/Topology/MetricsNDTest.php +++ b/tests/Math/Topology/MetricsNDTest.php @@ -26,7 +26,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase { /** * @testdox The manhattan distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testManhattan() : void @@ -39,7 +39,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The euclidean distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testEuclidean() : void @@ -53,7 +53,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The chebyshev distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testChebyshev() : void @@ -66,7 +66,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The minkowski distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testMinkowski() : void @@ -80,7 +80,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The canberra distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testCanberra() : void @@ -94,7 +94,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The cosine distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testCosine() : void @@ -108,7 +108,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The bray-curtis distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testBrayCurtis() : void @@ -122,7 +122,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The angular distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testAngularSeparation() : void @@ -136,7 +136,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox The hamming distance can be calculated - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testHammingDistance() : void @@ -149,7 +149,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the manhattan metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidManhattanDimension() : void @@ -161,7 +161,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the euclidean metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidEuclideanDimension() : void @@ -173,7 +173,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the chebyshev metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidChebyshevDimension() : void @@ -185,7 +185,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the minkowski metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidMinkowskiDimension() : void @@ -197,7 +197,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the canberra metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidCanberraDimension() : void @@ -209,7 +209,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the cosine metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidCosineDimension() : void @@ -221,7 +221,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the Bray Curtis metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidBrayCurtisDimension() : void @@ -233,7 +233,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the angular separation metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidAngularSeparationDimension() : void @@ -245,7 +245,7 @@ final class MetricsNDTest extends \PHPUnit\Framework\TestCase /** * @testdox Different dimension sizes for the coordinates in the hamming metric throw a InvalidDimensionException - * @covers phpOMS\Math\Topology\MetricsND + * @covers \phpOMS\Math\Topology\MetricsND * @group framework */ public function testInvalidHammingDimension() : void diff --git a/tests/Message/Cli/CliHeaderTest.php b/tests/Message/Cli/CliHeaderTest.php index a214870e6..64b92262c 100755 --- a/tests/Message/Cli/CliHeaderTest.php +++ b/tests/Message/Cli/CliHeaderTest.php @@ -34,7 +34,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testDefaults() : void @@ -51,7 +51,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testValueInputOutput() : void @@ -61,7 +61,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testHasKey() : void @@ -71,7 +71,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testInvalidOverwrite() : void @@ -82,7 +82,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testOverwrite() : void @@ -93,7 +93,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testRemove() : void @@ -106,7 +106,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox The header can generate default http headers based on status codes - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testHeaderGeneration() : void @@ -116,7 +116,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testAccount() : void @@ -126,7 +126,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testLockedHeaderSet() : void @@ -137,7 +137,7 @@ final class CliHeaderTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliHeader + * @covers \phpOMS\Message\Cli\CliHeader * @group framework */ public function testLockedHeaderRemove() : void diff --git a/tests/Message/Cli/CliRequestTest.php b/tests/Message/Cli/CliRequestTest.php index 6f78a5c7d..0aa907036 100755 --- a/tests/Message/Cli/CliRequestTest.php +++ b/tests/Message/Cli/CliRequestTest.php @@ -36,7 +36,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testDefault() : void @@ -53,7 +53,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testOSInputOutput() : void @@ -63,7 +63,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testMethodInputOutput() : void @@ -73,7 +73,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testInputOutputUriString() : void @@ -83,7 +83,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The url hashes for the different paths get correctly generated - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testHashingInputOutput() : void @@ -100,7 +100,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testInputOutputL11n() : void @@ -110,7 +110,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testDataInputOutput() : void @@ -121,7 +121,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testHasData() : void @@ -131,7 +131,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testInvalidOverwrite() : void @@ -142,7 +142,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testOverwrite() : void @@ -154,7 +154,7 @@ final class CliRequestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliRequest + * @covers \phpOMS\Message\Cli\CliRequest * @group framework */ public function testToString() : void diff --git a/tests/Message/Cli/CliResponseTest.php b/tests/Message/Cli/CliResponseTest.php index d4069bb65..a4040fcf8 100755 --- a/tests/Message/Cli/CliResponseTest.php +++ b/tests/Message/Cli/CliResponseTest.php @@ -34,7 +34,7 @@ final class CliResponseTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliResponse + * @covers \phpOMS\Message\Cli\CliResponse * @group framework */ public function testDefault() : void @@ -48,7 +48,7 @@ final class CliResponseTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Cli\CliResponse + * @covers \phpOMS\Message\Cli\CliResponse * @group framework */ public function testSetGet() : void @@ -62,7 +62,7 @@ final class CliResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Response data can be turned into an array - * @covers phpOMS\Message\Cli\CliResponse + * @covers \phpOMS\Message\Cli\CliResponse * @group framework */ public function testToArray() : void @@ -101,7 +101,7 @@ final class CliResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox A response with json as content-type is automatically rendered as json data - * @covers phpOMS\Message\Cli\CliResponse + * @covers \phpOMS\Message\Cli\CliResponse * @group framework */ public function testJsonRender() : void @@ -141,7 +141,7 @@ final class CliResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid response data results in an empty array - * @covers phpOMS\Message\Cli\CliResponse + * @covers \phpOMS\Message\Cli\CliResponse * @group framework */ public function testInvalidResponseDataToArray() : void @@ -152,7 +152,7 @@ final class CliResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid response data results in an empty render - * @covers phpOMS\Message\Cli\CliResponse + * @covers \phpOMS\Message\Cli\CliResponse * @group framework */ public function testInvalidResponseDataRender() : void diff --git a/tests/Message/HeaderAbstractTest.php b/tests/Message/HeaderAbstractTest.php index c303e4100..8d670146d 100755 --- a/tests/Message/HeaderAbstractTest.php +++ b/tests/Message/HeaderAbstractTest.php @@ -67,7 +67,7 @@ final class HeaderAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The the status code can be set and returned - * @covers phpOMS\Message\HeaderAbstract + * @covers \phpOMS\Message\HeaderAbstract * @group framework */ public function testStatusCodeInputOutput() : void diff --git a/tests/Message/Http/HttpHeaderTest.php b/tests/Message/Http/HttpHeaderTest.php index 90fac841d..2237fc26c 100755 --- a/tests/Message/Http/HttpHeaderTest.php +++ b/tests/Message/Http/HttpHeaderTest.php @@ -40,7 +40,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox The header has the expected default values after initialization - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testDefaults() : void @@ -59,7 +59,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Security policy headers get correctly identified - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testSecurityHeader() : void @@ -73,7 +73,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Header data can be set, checked for existence and returned - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testDataInputOutput() : void @@ -85,7 +85,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Header data can be forced to get overwritten - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testOverwrite() : void @@ -97,7 +97,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox By default header data doesn't get overwritten - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testInvalidOverwrite() : void @@ -109,7 +109,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Header data can be removed - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testRemove() : void @@ -121,7 +121,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing header data cannot be removed - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testInvalidRemove() : void @@ -131,7 +131,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Account data can be set and returned - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testAccountInputOutput() : void @@ -142,7 +142,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be defined as downloadable - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testDownloadable() : void @@ -153,7 +153,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox A header can be locked - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testLockInputOutput() : void @@ -164,7 +164,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox A locked header cannot add new data - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testLockInvalidSet() : void @@ -175,7 +175,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox A locked header cannot remove data - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testLockInvalidRemove() : void @@ -186,7 +186,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox The header can generate default http headers based on status codes - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testHeaderGeneration() : void @@ -218,7 +218,7 @@ final class HttpHeaderTest extends \PHPUnit\Framework\TestCase /** * @testdox Security header data cannot be changed once defined - * @covers phpOMS\Message\Http\HttpHeader + * @covers \phpOMS\Message\Http\HttpHeader * @group framework */ public function testInvalidOverwriteSecurityHeader() : void diff --git a/tests/Message/Http/HttpRequestTest.php b/tests/Message/Http/HttpRequestTest.php index b90fb5d4b..7e75d44e3 100755 --- a/tests/Message/Http/HttpRequestTest.php +++ b/tests/Message/Http/HttpRequestTest.php @@ -33,7 +33,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase { /** * @testdox The request has the expected default values after initialization - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testDefault() : void @@ -64,7 +64,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The OS can be set and returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testOSInputOutput() : void @@ -77,7 +77,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The browser can be set and returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testBrowserTypeInputOutput() : void @@ -94,7 +94,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The request method can be set and returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testRequestMethodInputOutput() : void @@ -108,7 +108,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The request referer can be returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testRequestRefererOutput() : void @@ -120,7 +120,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The route verb gets correctly inferred from the request method - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testRequestMethodToRouteVerb() : void @@ -139,7 +139,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The request is correctly constructed - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testConstructInputOutput() : void @@ -151,7 +151,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The url hashes for the different paths get correctly generated - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testHashingInputOutput() : void @@ -169,7 +169,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox Request data can be forcefully overwritten - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testOverwrite() : void @@ -183,7 +183,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox Request data is not overwritten by default - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testInvalidOverwrite() : void @@ -197,7 +197,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox The uri can be changed and returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testUriInputOutput() : void @@ -210,7 +210,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox Json data can be read from the request - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testDataJsonRead() : void @@ -229,7 +229,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing json data reads return empty data - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testEmptyDataJsonRead() : void @@ -241,7 +241,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid json data returns empty data - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testInvalidDataJsonRead() : void @@ -260,7 +260,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox List data can be read from the request - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testDataList() : void @@ -278,7 +278,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing list data reads return empty data - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testEmptyDataList() : void @@ -290,7 +290,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox Request data can be read with pattern matching - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testDataLike() : void @@ -306,7 +306,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox In case of no pattern matches empty data is returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testInvalidDataLikeMatch() : void @@ -322,7 +322,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A request with a path can be correctly casted to a string - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testToString() : void @@ -333,7 +333,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A request with a path and manually added data can be correctly casted to a string - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testToStringData() : void @@ -347,7 +347,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A request with a path, query parameters and manually added data can be correctly casted to a string - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testToStringGetData() : void @@ -362,7 +362,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A rest request can be made from a request and the result can be read - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testRestRequest() : void @@ -378,7 +378,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A request can be made with post data - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testPostData() : void @@ -396,7 +396,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A request can be made with json data - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testJsonData() : void @@ -414,7 +414,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A request can be made with multipart data - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testMultipartData() : void @@ -432,7 +432,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox If no language can be identified en is returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testLanguage() : void @@ -448,7 +448,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox If no locale can be identified en_US is returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testLocale() : void @@ -464,7 +464,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-mobile request is recognized as none-mobile - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testMobile() : void @@ -480,7 +480,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox If the OS type is unknown a unknwon OS type is returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testOS() : void @@ -496,7 +496,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox If the browser type is unknown a unknwon browser type is returned - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testBrowser() : void @@ -512,7 +512,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid https port throws a OutOfRangeException - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testInvalidHttpsPort() : void @@ -525,7 +525,7 @@ final class HttpRequestTest extends \PHPUnit\Framework\TestCase /** * @testdox A Invalid route verb throws a Exception - * @covers phpOMS\Message\Http\HttpRequest + * @covers \phpOMS\Message\Http\HttpRequest * @group framework */ public function testInvalidRouteVerb() : void diff --git a/tests/Message/Http/HttpResponseTest.php b/tests/Message/Http/HttpResponseTest.php index 0352ccf50..f5fa12b5b 100755 --- a/tests/Message/Http/HttpResponseTest.php +++ b/tests/Message/Http/HttpResponseTest.php @@ -36,7 +36,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox The response has the expected default values after initialization - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testDefault() : void @@ -50,7 +50,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Response data can be set and returned - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testResponseInputOutput() : void @@ -61,7 +61,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Response data can be removed - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testRemove() : void @@ -72,7 +72,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing response data cannot be removed - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testInvalidRemove() : void @@ -85,7 +85,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Test disabling output buffering - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testEndAllOutputBuffering() : void @@ -105,7 +105,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Response data can be turned into an array - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testToArray() : void @@ -144,7 +144,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox A response with json as content-type is automatically rendered as json data - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testJsonRender() : void @@ -184,7 +184,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Json data can be decoded from the response data - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testJsonDataDecode() : void @@ -197,7 +197,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox A html response can be forced to minimize the content by removing newlines and whitespaces - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testMinimizedRender() : void @@ -215,7 +215,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox None-html responses cannot be forced to minimize the content by removing newlines and whitespaces - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testInvalidMinimizedRender() : void @@ -233,7 +233,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid response data results in an empty array - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testInvalidResponseDataToArray() : void @@ -244,7 +244,7 @@ final class HttpResponseTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid response data results in an empty render - * @covers phpOMS\Message\Http\HttpResponse + * @covers \phpOMS\Message\Http\HttpResponse * @group framework */ public function testInvalidResponseDataRender() : void diff --git a/tests/Message/Http/RestTest.php b/tests/Message/Http/RestTest.php index f4b7af59b..cbf59a382 100755 --- a/tests/Message/Http/RestTest.php +++ b/tests/Message/Http/RestTest.php @@ -30,7 +30,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase { /** * @testdox A get request successfully returns the expected result - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testRequest() : void @@ -46,7 +46,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase /** * @testdox A post request with data successfully returns the expected result - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testPost() : void @@ -59,7 +59,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase /** * @testdox A put request with data successfully returns the expected result - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testPut() : void @@ -72,7 +72,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase /** * @testdox A delete request with data successfully returns the expected result - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testDelete() : void @@ -85,7 +85,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase /** * @testdox A get request with data successfully returns the expected result - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testGet() : void @@ -97,7 +97,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testJsonRequest() : void @@ -106,7 +106,7 @@ final class RestTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Message\Http\Rest + * @covers \phpOMS\Message\Http\Rest * @group framework */ public function testMultiRequest() : void diff --git a/tests/Message/RequestAbstractTest.php b/tests/Message/RequestAbstractTest.php index 79c996aa7..5e8d39cda 100755 --- a/tests/Message/RequestAbstractTest.php +++ b/tests/Message/RequestAbstractTest.php @@ -53,7 +53,7 @@ final class RequestAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Request data can be set and returned - * @covers phpOMS\Message\RequestAbstract + * @covers \phpOMS\Message\RequestAbstract * @group framework */ public function testDataInputOutput() : void @@ -66,7 +66,7 @@ final class RequestAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid data key returns null - * @covers phpOMS\Message\RequestAbstract + * @covers \phpOMS\Message\RequestAbstract * @group framework */ public function testInvalidDataKeyOutput() : void @@ -76,7 +76,7 @@ final class RequestAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Request data can be set and returned with correct types - * @covers phpOMS\Message\RequestAbstract + * @covers \phpOMS\Message\RequestAbstract * @group framework */ public function testDataTypeInputOutput() : void diff --git a/tests/Message/ResponseAbstractTest.php b/tests/Message/ResponseAbstractTest.php index 87530523b..1a422b591 100755 --- a/tests/Message/ResponseAbstractTest.php +++ b/tests/Message/ResponseAbstractTest.php @@ -48,7 +48,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The response has the expected default values after initialization - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testDefault() : void @@ -59,7 +59,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The response can be json serialized - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testJsonSerialize() : void @@ -75,7 +75,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set and returned for the response - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testDataInputOutput() : void @@ -86,7 +86,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set and returned for the response - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testDataStringInputOutput() : void @@ -98,7 +98,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set and returned for the response - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testDataBoolInputOutput() : void @@ -110,7 +110,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set and returned for the response - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testDataFloatInputOutput() : void @@ -131,7 +131,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set and returned for the response - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testDataDateTimeInputOutput() : void @@ -149,7 +149,7 @@ final class ResponseAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set and returned for the response - * @covers phpOMS\Message\ResponseAbstract + * @covers \phpOMS\Message\ResponseAbstract * @group framework */ public function testInvalidDataTypeInputOutput() : void diff --git a/tests/Model/Html/FormElementGeneratorTest.php b/tests/Model/Html/FormElementGeneratorTest.php index 7aa7ccde0..eb9c75bba 100755 --- a/tests/Model/Html/FormElementGeneratorTest.php +++ b/tests/Model/Html/FormElementGeneratorTest.php @@ -25,7 +25,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase { /** * @testdox A text input element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateTextInput() : void @@ -51,7 +51,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A text input element can be generated with a custom value - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateTextInputWithValue() : void @@ -77,7 +77,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A datetime input element can be generated with custom formatting - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateDateTimeInput() : void @@ -104,7 +104,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A checkbox element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateCheckboxInput() : void @@ -132,7 +132,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A checkbox element can be generated with a localized label element - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateCheckboxWithLanguageInput() : void @@ -160,7 +160,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A radio element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateRadioInput() : void @@ -188,7 +188,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A radio element can be generated with a localized label element - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateRadioWithLanguageInput() : void @@ -216,7 +216,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A label element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateLabel() : void @@ -239,7 +239,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A localized label element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateWithLanguageLabel() : void @@ -262,7 +262,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A textarea element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateTextarea() : void @@ -286,7 +286,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A textarea element can be generated with a custom value - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateWithValueTextarea() : void @@ -310,7 +310,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A select element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateSelect() : void @@ -339,7 +339,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A localized select element can be generated - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testGenerateWithLanguageSelect() : void @@ -368,7 +368,7 @@ final class FormElementGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing or invalid element type generates a INVALID output - * @covers phpOMS\Model\Html\FormElementGenerator + * @covers \phpOMS\Model\Html\FormElementGenerator * @group framework */ public function testInvalidElementType() : void diff --git a/tests/Model/Html/HeadTest.php b/tests/Model/Html/HeadTest.php index 4aea21376..7f339dc14 100755 --- a/tests/Model/Html/HeadTest.php +++ b/tests/Model/Html/HeadTest.php @@ -36,7 +36,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The head has the expected default values after initialization - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testDefault() : void @@ -55,7 +55,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The title can be set and returned - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testTitleInputOutput() : void @@ -66,7 +66,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The style can be set and returned - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testStyleInputOutput() : void @@ -77,7 +77,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The script can be set and returned - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testScriptInputOutput() : void @@ -88,7 +88,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The assets can be set and rendered - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testAssetRender() : void @@ -111,7 +111,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The assets can be set and rendered at the end of the document - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testAssetLateRender() : void @@ -122,7 +122,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The assets can be set and rendered with attributes - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testAssetRenderWithAttribute() : void @@ -133,7 +133,7 @@ final class HeadTest extends \PHPUnit\Framework\TestCase /** * @testdox The assets can be set and rendered at the end of the document with attributes - * @covers phpOMS\Model\Html\Head + * @covers \phpOMS\Model\Html\Head * @group framework */ public function testAssetLateRenderWithAttribute() : void diff --git a/tests/Model/Html/MetaTest.php b/tests/Model/Html/MetaTest.php index 62b4020a7..34e9ef186 100755 --- a/tests/Model/Html/MetaTest.php +++ b/tests/Model/Html/MetaTest.php @@ -35,7 +35,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The meta data has the expected default values after initialization - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testDefault() : void @@ -52,7 +52,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox A keyword can be added and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testKeywordInputOutput() : void @@ -63,7 +63,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The author can be set and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testAuthorInputOutput() : void @@ -74,7 +74,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The charset can be set and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testCharsetInputOutput() : void @@ -85,7 +85,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The description can be set and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testDescriptionInputOutput() : void @@ -96,7 +96,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox A property can be set and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testPropertyInputOutput() : void @@ -107,7 +107,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox A itemprop can be set and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testItempropInputOutput() : void @@ -118,7 +118,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox A name can be set and returned - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testNameInputOutput() : void @@ -129,7 +129,7 @@ final class MetaTest extends \PHPUnit\Framework\TestCase /** * @testdox The meta data can be rendered - * @covers phpOMS\Model\Html\Meta + * @covers \phpOMS\Model\Html\Meta * @group framework */ public function testRender() : void diff --git a/tests/Model/Message/DomTest.php b/tests/Model/Message/DomTest.php index 803b939fa..62c75472e 100755 --- a/tests/Model/Message/DomTest.php +++ b/tests/Model/Message/DomTest.php @@ -23,7 +23,7 @@ use phpOMS\Model\Message\DomAction; final class DomTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Model\Message\Dom + * @covers \phpOMS\Model\Message\Dom * @group framework */ public function testDefault() : void @@ -38,7 +38,7 @@ final class DomTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Model\Message\Dom + * @covers \phpOMS\Model\Message\Dom * @group framework */ public function testSetGet() : void diff --git a/tests/Model/Message/FormValidationTest.php b/tests/Model/Message/FormValidationTest.php index 9ecd9f356..a79e91251 100755 --- a/tests/Model/Message/FormValidationTest.php +++ b/tests/Model/Message/FormValidationTest.php @@ -22,7 +22,7 @@ use phpOMS\Model\Message\FormValidation; final class FormValidationTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Model\Message\FormValidation + * @covers \phpOMS\Model\Message\FormValidation * @group framework */ public function testDefault() : void @@ -34,7 +34,7 @@ final class FormValidationTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Model\Message\FormValidation + * @covers \phpOMS\Model\Message\FormValidation * @group framework */ public function testSetGet() : void diff --git a/tests/Model/Message/NotifyTest.php b/tests/Model/Message/NotifyTest.php index 40a17e6ab..1122b4a70 100755 --- a/tests/Model/Message/NotifyTest.php +++ b/tests/Model/Message/NotifyTest.php @@ -23,7 +23,7 @@ use phpOMS\Model\Message\Notify; final class NotifyTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Model\Message\Notify + * @covers \phpOMS\Model\Message\Notify * @group framework */ public function testDefault() : void @@ -39,7 +39,7 @@ final class NotifyTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Model\Message\Notify + * @covers \phpOMS\Model\Message\Notify * @group framework */ public function testSetGet() : void diff --git a/tests/Model/Message/RedirectTest.php b/tests/Model/Message/RedirectTest.php index 44b4b28cf..09286640c 100755 --- a/tests/Model/Message/RedirectTest.php +++ b/tests/Model/Message/RedirectTest.php @@ -22,7 +22,7 @@ use phpOMS\Model\Message\Redirect; final class RedirectTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Model\Message\Redirect + * @covers \phpOMS\Model\Message\Redirect * @group framework */ public function testDefault() : void @@ -36,7 +36,7 @@ final class RedirectTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Model\Message\Redirect + * @covers \phpOMS\Model\Message\Redirect * @group framework */ public function testSetGet() : void diff --git a/tests/Model/Message/ReloadTest.php b/tests/Model/Message/ReloadTest.php index 4b167b962..19f00abd6 100755 --- a/tests/Model/Message/ReloadTest.php +++ b/tests/Model/Message/ReloadTest.php @@ -22,7 +22,7 @@ use phpOMS\Model\Message\Reload; final class ReloadTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Model\Message\Reload + * @covers \phpOMS\Model\Message\Reload * @group framework */ public function testDefault() : void @@ -34,7 +34,7 @@ final class ReloadTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Model\Message\Reload + * @covers \phpOMS\Model\Message\Reload * @group framework */ public function testSetGet() : void diff --git a/tests/Module/Exception/InvalidModuleExceptionTest.php b/tests/Module/Exception/InvalidModuleExceptionTest.php index 63ae9e259..34c58e24f 100755 --- a/tests/Module/Exception/InvalidModuleExceptionTest.php +++ b/tests/Module/Exception/InvalidModuleExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\Module\Exception\InvalidModuleException; final class InvalidModuleExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Module\Exception\InvalidModuleException + * @covers \phpOMS\Module\Exception\InvalidModuleException * @group framework */ public function testException() : void diff --git a/tests/Module/Exception/InvalidThemeExceptionTest.php b/tests/Module/Exception/InvalidThemeExceptionTest.php index 5f65064ad..286ce52b7 100755 --- a/tests/Module/Exception/InvalidThemeExceptionTest.php +++ b/tests/Module/Exception/InvalidThemeExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\Module\Exception\InvalidThemeException; final class InvalidThemeExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Module\Exception\InvalidThemeException + * @covers \phpOMS\Module\Exception\InvalidThemeException * @group framework */ public function testException() : void diff --git a/tests/Module/InstallerAbstractTest.php b/tests/Module/InstallerAbstractTest.php index d3e1c4e02..59c7ac6a8 100755 --- a/tests/Module/InstallerAbstractTest.php +++ b/tests/Module/InstallerAbstractTest.php @@ -43,7 +43,7 @@ final class InstallerAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid or missing module status file throws exception during installation - * @covers phpOMS\Module\InstallerAbstract + * @covers \phpOMS\Module\InstallerAbstract * @group framework */ public function testInvalidModuleInstall() : void diff --git a/tests/Module/ModuleAbstractTest.php b/tests/Module/ModuleAbstractTest.php index 063e11a4d..a497caa32 100755 --- a/tests/Module/ModuleAbstractTest.php +++ b/tests/Module/ModuleAbstractTest.php @@ -168,7 +168,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The constant values of the abstract module are overwritten by the extension - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testConstants() : void @@ -179,7 +179,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of the module can be returned - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testName() : void @@ -189,7 +189,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The dependencies of the module can be returned - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testDependencies() : void @@ -199,7 +199,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The providings of the module can be returned - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testProviding() : void @@ -209,7 +209,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A module can receive information and functionality from another module - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testReceiving() : void @@ -220,7 +220,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A module can load its own localization/language dataset - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testLocalization() : void @@ -230,7 +230,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid language or theme returns in an empty localization/language dataset - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testInvalidLocalization() : void @@ -240,7 +240,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The module can automatically generate a json response based on provided data for the frontend - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testFillJson() : void @@ -263,7 +263,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The module can automatically generate a json response based on provided data - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testFillJsonRaw() : void @@ -429,7 +429,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A model can be created - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testModelCreate() : void @@ -444,7 +444,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox Multiple models can be generated - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testModelsCreate() : void @@ -459,7 +459,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A model can be updated - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testModelUpdate() : void @@ -476,7 +476,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A model can be deleted - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testModelDelete() : void @@ -493,7 +493,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A model relation can be created - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testModelRelation() : void @@ -519,7 +519,7 @@ final class ModuleAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The model CRUD functions can be called with a closure - * @covers phpOMS\Module\ModuleAbstract + * @covers \phpOMS\Module\ModuleAbstract * @group framework */ public function testModelFunctionsWithClosure() : void diff --git a/tests/Module/ModuleInfoTest.php b/tests/Module/ModuleInfoTest.php index 0b749a749..c537e6093 100755 --- a/tests/Module/ModuleInfoTest.php +++ b/tests/Module/ModuleInfoTest.php @@ -27,7 +27,7 @@ final class ModuleInfoTest extends \PHPUnit\Framework\TestCase { /** * @testdox A info file can be correctly loaded - * @covers phpOMS\Module\ModuleInfo + * @covers \phpOMS\Module\ModuleInfo * @group framework */ public function testLoad() : void @@ -52,7 +52,7 @@ final class ModuleInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A info file can be modified - * @covers phpOMS\Module\ModuleInfo + * @covers \phpOMS\Module\ModuleInfo * @group framework */ public function testChange() : void @@ -76,7 +76,7 @@ final class ModuleInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid info file path load throws a PathException - * @covers phpOMS\Module\ModuleInfo + * @covers \phpOMS\Module\ModuleInfo * @group framework */ public function testInvalidPathLoad() : void @@ -89,7 +89,7 @@ final class ModuleInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid info file path update throws a PathException - * @covers phpOMS\Module\ModuleInfo + * @covers \phpOMS\Module\ModuleInfo * @group framework */ public function testInvalidPathUpdate() : void @@ -102,7 +102,7 @@ final class ModuleInfoTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid change data throws a InvalidArgumentException - * @covers phpOMS\Module\ModuleInfo + * @covers \phpOMS\Module\ModuleInfo * @group framework */ public function testInvalidDataSet() : void diff --git a/tests/Module/ModuleManagerTest.php b/tests/Module/ModuleManagerTest.php index 79776bf28..35835fb56 100755 --- a/tests/Module/ModuleManagerTest.php +++ b/tests/Module/ModuleManagerTest.php @@ -59,7 +59,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Unknown modules return a null module - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testUnknownModuleGet() : void @@ -69,7 +69,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Unknown modules cannot get activated, deactivated - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testUnknwonModuleStatusChange() : void @@ -80,7 +80,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Active modules can be returned - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testAllActiveModules() : void @@ -92,7 +92,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Modules can be checked to be active - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testActiveModule() : void @@ -108,7 +108,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Modules can be checked to be running - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testRunningModule() : void @@ -120,7 +120,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox All available modules can be returned - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testAllModules() : void @@ -132,9 +132,9 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A module can be installed and its status can be changed - * @covers phpOMS\Module\InstallerAbstract - * @covers phpOMS\Module\ModuleManager - * @covers phpOMS\Module\StatusAbstract + * @covers \phpOMS\Module\InstallerAbstract + * @covers \phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\StatusAbstract * @group framework */ public function testStatus() : void @@ -184,7 +184,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing module cannot be re-initialized - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testInvalidModuleReInit() : void @@ -195,9 +195,9 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A module can be re-initialized - * @covers phpOMS\Module\InstallerAbstract - * @covers phpOMS\Module\ModuleManager - * @covers phpOMS\Module\StatusAbstract + * @covers \phpOMS\Module\InstallerAbstract + * @covers \phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\StatusAbstract * @group framework */ public function testReInit() : void @@ -208,7 +208,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A module is automatically loaded for its URIs - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testRequestLoad() : void @@ -237,7 +237,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Getting language files for an invalid module returns an empty array - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testGetLanguageForInvalidRequest() : void @@ -252,7 +252,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Installed modules can be returned - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testInstalledModules() : void @@ -264,7 +264,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A module can be checked if it is installed - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testIsInstalled() : void @@ -274,7 +274,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox Installing an already installed module doesn't perform anything - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testInstallingAlreadyInstalledModule() : void @@ -284,7 +284,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The valid module can be returned - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testAdminModule() : void @@ -295,8 +295,8 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A module can be uninstalled - * @covers phpOMS\Module\ModuleManager - * @covers phpOMS\Module\UninstallerAbstract + * @covers \phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\UninstallerAbstract * @group framework */ public function testUninstall() : void @@ -314,7 +314,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A empty or invalid module path returns an empty array on module getter functions. - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testInvalidModulePath() : void @@ -328,7 +328,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid module name cannot be installed - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testInvalidModuleInstall() : void @@ -338,7 +338,7 @@ final class ModuleManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid module name cannot be uninstalled - * @covers phpOMS\Module\ModuleManager + * @covers \phpOMS\Module\ModuleManager * @group framework */ public function testInvalidModuleUninstall() : void diff --git a/tests/Module/NullModuleTest.php b/tests/Module/NullModuleTest.php index 5c6257f07..c32154766 100755 --- a/tests/Module/NullModuleTest.php +++ b/tests/Module/NullModuleTest.php @@ -44,7 +44,7 @@ final class NullModuleTest extends \PHPUnit\Framework\TestCase /** * @testdox The null module is an instance of the module abstract - * @covers phpOMS\Module\NullModule + * @covers \phpOMS\Module\NullModule * @group framework */ public function testModule() : void @@ -54,7 +54,7 @@ final class NullModuleTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid module method call will create an error log - * @covers phpOMS\Module\NullModule + * @covers \phpOMS\Module\NullModule * @group framework */ public function testInvalidModuleMethodCalls() : void diff --git a/tests/Module/PackageManagerTest.php b/tests/Module/PackageManagerTest.php index 7fc40beac..46302a6a2 100755 --- a/tests/Module/PackageManagerTest.php +++ b/tests/Module/PackageManagerTest.php @@ -81,7 +81,7 @@ final class PackageManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A package can be installed - * @covers phpOMS\Module\PackageManager + * @covers \phpOMS\Module\PackageManager * @group framework */ public function testPackageValidInstall() : void @@ -145,7 +145,7 @@ final class PackageManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A package which didn't get extracted cannot be loaded and throws a PathException - * @covers phpOMS\Module\PackageManager + * @covers \phpOMS\Module\PackageManager * @group framework */ public function testNotExtractedLoad() : void @@ -163,7 +163,7 @@ final class PackageManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid package cannot be installed and throws a Exception - * @covers phpOMS\Module\PackageManager + * @covers \phpOMS\Module\PackageManager * @group framework */ public function testInvalidInstall() : void @@ -181,7 +181,7 @@ final class PackageManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid package key doesn't validate the package - * @covers phpOMS\Module\PackageManager + * @covers \phpOMS\Module\PackageManager * @group framework */ public function testPackageInvalidKey() : void @@ -199,7 +199,7 @@ final class PackageManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid package content doesn't validate the package - * @covers phpOMS\Module\PackageManager + * @covers \phpOMS\Module\PackageManager * @group framework */ public function testPackageInvalidContent() : void @@ -218,7 +218,7 @@ final class PackageManagerTest extends \PHPUnit\Framework\TestCase /** * @testdox The temporarily extracted package can be cleaned up - * @covers phpOMS\Module\PackageManager + * @covers \phpOMS\Module\PackageManager * @group framework */ public function testCleanup() : void diff --git a/tests/Module/StatusAbstractTest.php b/tests/Module/StatusAbstractTest.php index 5e252c86b..a3fbcd08b 100755 --- a/tests/Module/StatusAbstractTest.php +++ b/tests/Module/StatusAbstractTest.php @@ -41,7 +41,7 @@ final class StatusAbstractTest extends \PHPUnit\Framework\TestCase /** * A invalid module path cannot be activated - * @covers phpOMS\Module\StatusAbstract + * @covers \phpOMS\Module\StatusAbstract * @group framework */ public function testInvalidModulePathActivation() : void diff --git a/tests/Module/UninstallerAbstractTest.php b/tests/Module/UninstallerAbstractTest.php index c4d916f53..01434ff99 100755 --- a/tests/Module/UninstallerAbstractTest.php +++ b/tests/Module/UninstallerAbstractTest.php @@ -42,7 +42,7 @@ final class UninstallerAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox A missing database schema will not perform any database operations - * @covers phpOMS\Module\UninstallerAbstract + * @covers \phpOMS\Module\UninstallerAbstract * @group framework */ public function testMissingDbFileUninstall() : void diff --git a/tests/PreloaderTest.php b/tests/PreloaderTest.php index f6cbd87f7..83580e6b4 100755 --- a/tests/PreloaderTest.php +++ b/tests/PreloaderTest.php @@ -24,7 +24,7 @@ use phpOMS\Preloader; final class PreloaderTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Preloader + * @covers \phpOMS\Preloader * @group framework */ public function testPreloading() : void diff --git a/tests/Router/SocketRouterTest.php b/tests/Router/SocketRouterTest.php index 11c14d1c4..e225cfdce 100755 --- a/tests/Router/SocketRouterTest.php +++ b/tests/Router/SocketRouterTest.php @@ -42,7 +42,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox The route result for an empty request is empty - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testDefault() : void @@ -52,7 +52,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing routing file cannot be imported - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testInvalidRoutingFile() : void @@ -62,7 +62,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A existing routing file can be imported - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testLoadingRoutesFromFile() : void @@ -72,7 +72,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A matching route returns the destinations - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testRouteMatching() : void @@ -87,7 +87,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox The routes can be removed from the router - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testRouteClearing() : void @@ -103,7 +103,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes can be added dynamically - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testDynamicRouteAdding() : void @@ -117,7 +117,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes only match if the permissions match - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testWithValidPermissions() : void @@ -153,7 +153,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes don't match if the permissions don't match - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testWithInvalidPermissions() : void @@ -213,7 +213,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A data validation pattern validates matches correctly - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testDataValidation() : void @@ -232,7 +232,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A data validation pattern invalidates missmatches - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testInvalidDataValidation() : void @@ -251,7 +251,7 @@ final class SocketRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A uri can be used for data population - * @covers phpOMS\Router\SocketRouter + * @covers \phpOMS\Router\SocketRouter * @group framework */ public function testDataFromPattern() : void diff --git a/tests/Router/WebRouterTest.php b/tests/Router/WebRouterTest.php index 66865d88e..529b746a8 100755 --- a/tests/Router/WebRouterTest.php +++ b/tests/Router/WebRouterTest.php @@ -46,7 +46,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox The route result for an empty request is empty - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testDefault() : void @@ -60,7 +60,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing routing file cannot be imported - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testInvalidRoutingFile() : void @@ -70,7 +70,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A existing routing file can be imported - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testLoadingRoutesFromFile() : void @@ -80,7 +80,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A matching route returns the destinations - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testRouteMatching() : void @@ -99,7 +99,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox The routes can be removed from the router - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testRouteClearing() : void @@ -119,7 +119,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid routing verbs don't match even if the route matches - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testRouteMissMatchingForInvalidVerbs() : void @@ -137,7 +137,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes can be added dynamically - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testDynamicRouteAdding() : void @@ -169,7 +169,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes which require a CSRF token can only match with a CSRF token - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testWithCSRF() : void @@ -189,7 +189,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes which require a CSRF token don't match without a CSRF token - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testWithoutCSRF() : void @@ -208,7 +208,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes only match if the permissions match - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testWithValidPermissions() : void @@ -248,7 +248,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox Routes don't match if the permissions don't match - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testWithInvalidPermissions() : void @@ -312,7 +312,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A data validation pattern validates matches correctly - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testDataValidation() : void @@ -336,7 +336,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A data validation pattern invalidates miss-matches - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testInvalidDataValidation() : void @@ -360,7 +360,7 @@ final class WebRouterTest extends \PHPUnit\Framework\TestCase /** * @testdox A uri can be used for data population - * @covers phpOMS\Router\WebRouter + * @covers \phpOMS\Router\WebRouter * @group framework */ public function testDataFromPattern() : void diff --git a/tests/Security/GuardTest.php b/tests/Security/GuardTest.php index 8bac47439..3c3476c0a 100644 --- a/tests/Security/GuardTest.php +++ b/tests/Security/GuardTest.php @@ -59,7 +59,7 @@ final class GuardTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be validated for shell safety - * @covers phpOMS\Security\Guard + * @covers \phpOMS\Security\Guard * @group framework */ public function testIsShellSafe() : void diff --git a/tests/Security/PhpCodeTest.php b/tests/Security/PhpCodeTest.php index cfabd52ca..adbeca470 100755 --- a/tests/Security/PhpCodeTest.php +++ b/tests/Security/PhpCodeTest.php @@ -27,7 +27,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase { /** * @testdox A file with unicode characters gets correctly identified - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testHasUnicode() : void @@ -43,7 +43,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with no unicode characters gets correctly identified - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testHasNoUnicode() : void @@ -59,7 +59,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with no disabled functions gets correctly identified - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testDisabledFunctions() : void @@ -70,7 +70,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with deprecated functions gets correctly identified - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testHasDeprecatedFunction() : void @@ -86,7 +86,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with no deprecated functions gets correctly identified - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testHasNoDeprecatedFunction() : void @@ -102,7 +102,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A file hash comparison is successful if the file generates the same hash - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testFileIntegrity() : void @@ -112,7 +112,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A file hash comparison is unsuccessful if the file generates a different hash - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testFileInvalidIntegrity() : void @@ -122,7 +122,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Two equal strings validate as the same - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testStringIntegrity() : void @@ -132,7 +132,7 @@ final class PhpCodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Two different strings don't validate as the same - * @covers phpOMS\Security\PhpCode + * @covers \phpOMS\Security\PhpCode * @group framework */ public function testStringInvalidIntegrity() : void diff --git a/tests/Socket/Client/ClientTest.php b/tests/Socket/Client/ClientTest.php index c850dee93..334b7589d 100755 --- a/tests/Socket/Client/ClientTest.php +++ b/tests/Socket/Client/ClientTest.php @@ -80,7 +80,7 @@ final class ClientTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Socket\Client\Client + * @covers \phpOMS\Socket\Client\Client * @group framework */ public function testSetupTCPSocket() : void diff --git a/tests/Socket/Client/NullClientConnectionTest.php b/tests/Socket/Client/NullClientConnectionTest.php index f97921c3e..daca61feb 100755 --- a/tests/Socket/Client/NullClientConnectionTest.php +++ b/tests/Socket/Client/NullClientConnectionTest.php @@ -24,7 +24,7 @@ use phpOMS\Socket\Client\NullClientConnection; final class NullClientConnectionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Socket\Client\NullClientConnection + * @covers \phpOMS\Socket\Client\NullClientConnection * @group framework */ public function testDefault() : void diff --git a/tests/Socket/Server/ServerTest.php b/tests/Socket/Server/ServerTest.php index a44349699..e2f5f2894 100755 --- a/tests/Socket/Server/ServerTest.php +++ b/tests/Socket/Server/ServerTest.php @@ -80,7 +80,7 @@ final class ServerTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Socket\Server\Server + * @covers \phpOMS\Socket\Server\Server * @group framework */ public function testSetupTCPSocket() : void diff --git a/tests/Stdlib/Base/AddressTest.php b/tests/Stdlib/Base/AddressTest.php index ccae59dea..a17f7a5e5 100755 --- a/tests/Stdlib/Base/AddressTest.php +++ b/tests/Stdlib/Base/AddressTest.php @@ -36,7 +36,7 @@ final class AddressTest extends \PHPUnit\Framework\TestCase /** * @testdox The address has the expected default values after initialization - * @covers phpOMS\Stdlib\Base\Address + * @covers \phpOMS\Stdlib\Base\Address * @group framework */ public function testDefault() : void @@ -61,7 +61,7 @@ final class AddressTest extends \PHPUnit\Framework\TestCase /** * @testdox The fao can be set and returned - * @covers phpOMS\Stdlib\Base\Address + * @covers \phpOMS\Stdlib\Base\Address * @group framework */ public function testFAOInputOutput() : void @@ -72,7 +72,7 @@ final class AddressTest extends \PHPUnit\Framework\TestCase /** * @testdox The address can be turned into array data - * @covers phpOMS\Stdlib\Base\Address + * @covers \phpOMS\Stdlib\Base\Address * @group framework */ public function testArray() : void @@ -96,7 +96,7 @@ final class AddressTest extends \PHPUnit\Framework\TestCase /** * @testdox The address can be json serialized - * @covers phpOMS\Stdlib\Base\Address + * @covers \phpOMS\Stdlib\Base\Address * @group framework */ public function testJsonSerialize() : void diff --git a/tests/Stdlib/Base/EnumArrayTest.php b/tests/Stdlib/Base/EnumArrayTest.php index d80e87fba..fa4fe4807 100755 --- a/tests/Stdlib/Base/EnumArrayTest.php +++ b/tests/Stdlib/Base/EnumArrayTest.php @@ -23,7 +23,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase { /** * @testdox A valid enum name returns the enum value - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testValueOutput() : void @@ -34,7 +34,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox A valid enum name can be validated - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testValidateEnumName() : void @@ -44,7 +44,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid enum name doesn't validate - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testInvalidEnumNameValidation() : void @@ -54,7 +54,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox All enum name/value pairs can be returned - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testOutputValues() : void @@ -64,7 +64,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox A valid enum value can be checked for existence - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testValidateEnumValue() : void @@ -75,7 +75,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid enum value doesn't validate - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testInvalidEnumValueValidation() : void @@ -85,7 +85,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid enum name throws a OutOfBoundsException - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testInvalidConstantException() : void @@ -97,7 +97,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of enum values can be returned - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testCount() : void @@ -107,7 +107,7 @@ final class EnumArrayTest extends \PHPUnit\Framework\TestCase /** * @testdox A random enum value can be returned - * @covers phpOMS\Stdlib\Base\EnumArray + * @covers \phpOMS\Stdlib\Base\EnumArray * @group framework */ public function testRandomValue() : void diff --git a/tests/Stdlib/Base/EnumTest.php b/tests/Stdlib/Base/EnumTest.php index 62cfe7f99..7ac43583c 100755 --- a/tests/Stdlib/Base/EnumTest.php +++ b/tests/Stdlib/Base/EnumTest.php @@ -23,7 +23,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase { /** * @testdox A valid enum name can be validated - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testValidateEnumName() : void @@ -33,7 +33,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid enum name doesn't validate - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testInvalidEnumNameValidation() : void @@ -43,7 +43,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox All enum name/value pairs can be returned - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testOutputValues() : void @@ -53,7 +53,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A valid enum value can be checked for existence - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testValidateEnumValue() : void @@ -64,7 +64,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid enum value doesn't validate - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testInvalidEnumValueValidation() : void @@ -74,7 +74,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A random enum value can be returned - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testRandomValue() : void @@ -84,7 +84,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A valid enum name returns the enum value - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testValueOutput() : void @@ -95,7 +95,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of enum values can be returned - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testCount() : void @@ -105,7 +105,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A valid enum value returns the enum name - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testNameOutput() : void @@ -116,7 +116,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox Binary flags validate if they are set - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testFlags() : void @@ -128,7 +128,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox Binary flags don't validate if they are not set - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testInvalidFlags() : void @@ -139,7 +139,7 @@ final class EnumTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid enum name returns null - * @covers phpOMS\Stdlib\Base\Enum + * @covers \phpOMS\Stdlib\Base\Enum * @group framework */ public function testInvalidConstantException() : void diff --git a/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php b/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php index 803744085..44056753f 100755 --- a/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php +++ b/tests/Stdlib/Base/Exception/InvalidEnumNameTest.php @@ -22,7 +22,7 @@ use phpOMS\Stdlib\Base\Exception\InvalidEnumName; final class InvalidEnumNameTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Stdlib\Base\Exception\InvalidEnumName + * @covers \phpOMS\Stdlib\Base\Exception\InvalidEnumName * @group framework */ public function testException() : void diff --git a/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php b/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php index 190d0c9b6..167b421d9 100755 --- a/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php +++ b/tests/Stdlib/Base/Exception/InvalidEnumValueTest.php @@ -22,7 +22,7 @@ use phpOMS\Stdlib\Base\Exception\InvalidEnumValue; final class InvalidEnumValueTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Stdlib\Base\Exception\InvalidEnumValue + * @covers \phpOMS\Stdlib\Base\Exception\InvalidEnumValue * @group framework */ public function testException() : void diff --git a/tests/Stdlib/Base/HeapTest.php b/tests/Stdlib/Base/HeapTest.php index 879188acd..6b5fc70cf 100755 --- a/tests/Stdlib/Base/HeapTest.php +++ b/tests/Stdlib/Base/HeapTest.php @@ -25,7 +25,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase { /** * @testdox A list of elements can be turned into a heap - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testHeapify() : void @@ -52,7 +52,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements get correctly pushed to the heap - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testSize() : void @@ -67,7 +67,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox A element can be added to a heap at the correct position - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testInsort() : void @@ -94,7 +94,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox Heap elements get returned in the correct order - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testPushAndPop() : void @@ -117,7 +117,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox Heap elements get returned in the correct order by using a custom comparator - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testPushAndPopCustomComparator() : void @@ -140,7 +140,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The heap can be turned into an array - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testArray() : void @@ -164,7 +164,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox Heap elements can be replaced - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testReplace() : void @@ -189,7 +189,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox A heap element can be returned while adding a new one - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testPushPop() : void @@ -217,7 +217,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The heap can be checked if it contains certain elements - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testContains() : void @@ -238,7 +238,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The heap can be checked if it contains certain custom elements - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testContainsItem() : void @@ -259,7 +259,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox A heap item can be updated if it exists while maintaining the correct order - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testUpdate() : void @@ -288,7 +288,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The first heap element can be returned without removing it - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testPeek() : void @@ -307,7 +307,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The n smallest elements can be returned from the heap - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testNSmallest() : void @@ -323,7 +323,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The n largest elements can be returned from the heap - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testNLargest() : void @@ -340,7 +340,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The heap can be cleared of all elements - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testClear() : void @@ -356,7 +356,7 @@ final class HeapTest extends \PHPUnit\Framework\TestCase /** * @testdox The heap can be checked if it has elements - * @covers phpOMS\Stdlib\Base\Heap + * @covers \phpOMS\Stdlib\Base\Heap * @group framework */ public function testEmpty() : void diff --git a/tests/Stdlib/Base/IbanTest.php b/tests/Stdlib/Base/IbanTest.php index 89a5a96ad..a94749a07 100755 --- a/tests/Stdlib/Base/IbanTest.php +++ b/tests/Stdlib/Base/IbanTest.php @@ -26,7 +26,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase { /** * @testdox A iban can be correctly parsed into its different components - * @covers phpOMS\Stdlib\Base\Iban + * @covers \phpOMS\Stdlib\Base\Iban * @group framework */ public function testInputOutput() : void @@ -51,7 +51,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase /** * @testdox A iban can be serialized and unserialized - * @covers phpOMS\Stdlib\Base\Iban + * @covers \phpOMS\Stdlib\Base\Iban * @group framework */ public function testSearialization() : void @@ -68,7 +68,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid iban country code throws a InvalidArgumentException - * @covers phpOMS\Stdlib\Base\Iban + * @covers \phpOMS\Stdlib\Base\Iban * @group framework */ public function testInvalidIbanCountry() : void @@ -80,7 +80,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid iban length throws a InvalidArgumentException - * @covers phpOMS\Stdlib\Base\Iban + * @covers \phpOMS\Stdlib\Base\Iban * @group framework */ public function testInvalidIbanLength() : void @@ -92,7 +92,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid iban checksum throws a InvalidArgumentException - * @covers phpOMS\Stdlib\Base\Iban + * @covers \phpOMS\Stdlib\Base\Iban * @group framework */ public function testInvalidIbanChecksum() : void diff --git a/tests/Stdlib/Base/LocationTest.php b/tests/Stdlib/Base/LocationTest.php index d5e4dd2f3..73043ba10 100755 --- a/tests/Stdlib/Base/LocationTest.php +++ b/tests/Stdlib/Base/LocationTest.php @@ -36,7 +36,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The location has the expected default values after initialization - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testDefault() : void @@ -64,7 +64,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The postal can be set and returned - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testPostalInputOutput() : void @@ -75,7 +75,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The city can be set and returned - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testCityInputOutput() : void @@ -86,7 +86,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The country can be set and returned - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testCountryInputOutput() : void @@ -97,7 +97,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The address can be set and returned - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testAddressInputOutput() : void @@ -108,7 +108,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The state can be set and returned - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testStateInputOutput() : void @@ -119,7 +119,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The location can be turned into an array - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testArray() : void @@ -148,7 +148,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The location can be json serialized - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testJsonSerialize() : void @@ -178,7 +178,7 @@ final class LocationTest extends \PHPUnit\Framework\TestCase /** * @testdox The location can unserialized - * @covers phpOMS\Stdlib\Base\Location + * @covers \phpOMS\Stdlib\Base\Location * @group framework */ public function testUnserialize() : void diff --git a/tests/Stdlib/Base/NullLocationTest.php b/tests/Stdlib/Base/NullLocationTest.php index bfd3ea21b..dc452f999 100755 --- a/tests/Stdlib/Base/NullLocationTest.php +++ b/tests/Stdlib/Base/NullLocationTest.php @@ -22,7 +22,7 @@ use phpOMS\Stdlib\Base\NullLocation; final class NullLocationTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Stdlib\Base\NullLocation + * @covers \phpOMS\Stdlib\Base\NullLocation * @group framework */ public function testNullLocation() : void diff --git a/tests/Stdlib/Base/SmartDateTimeTest.php b/tests/Stdlib/Base/SmartDateTimeTest.php index 00e06bed3..a51760b8a 100755 --- a/tests/Stdlib/Base/SmartDateTimeTest.php +++ b/tests/Stdlib/Base/SmartDateTimeTest.php @@ -27,7 +27,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase { /** * @testdox The smart datetime extends the datetime - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testAttributes() : void @@ -38,7 +38,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox The smart datetime can be formatted like the datetime - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testFormat() : void @@ -49,7 +49,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox The smart datetime can be modified an creates a new smart datetime - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testCreateModify() : void @@ -72,7 +72,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox The days of the month can be returned - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testDaysOfMonth() : void @@ -83,7 +83,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox The week day index of the first day of the month can be returned - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testFirstDayOfMonth() : void @@ -94,7 +94,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be created from a datetime - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testCreateFromDateTime() : void @@ -106,7 +106,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be returned of the last day of the month - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testEndOfMonth() : void @@ -119,7 +119,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be returned of the fist day of the month - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testStartOfMonth() : void @@ -132,7 +132,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be returned of the last day of the week - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testEndOfWeek() : void @@ -145,7 +145,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be returned of the fist day of the week - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testStartOfWeek() : void @@ -158,7 +158,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be returned of the end of the day - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testEndOfDay() : void @@ -171,7 +171,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A smart datetime can be returned of the start of the day - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testStartOfDay() : void @@ -184,7 +184,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A date or year can be checked if it is a leap year - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testLeapYear() : void @@ -199,7 +199,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox The day of the week index can be returned from a date - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testDayOfWeek() : void @@ -213,7 +213,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid day of the week returns a negative week index - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testInvalidDayOfWeek() : void @@ -223,7 +223,7 @@ final class SmartDateTimeTest extends \PHPUnit\Framework\TestCase /** * @testdox A calendar sheet is returned containing all days of the month and some days of the previous and next month - * @covers phpOMS\Stdlib\Base\SmartDateTime + * @covers \phpOMS\Stdlib\Base\SmartDateTime * @group framework */ public function testCalendarSheet() : void diff --git a/tests/Stdlib/Graph/EdgeTest.php b/tests/Stdlib/Graph/EdgeTest.php index c9b5c8d17..444963300 100755 --- a/tests/Stdlib/Graph/EdgeTest.php +++ b/tests/Stdlib/Graph/EdgeTest.php @@ -26,7 +26,7 @@ final class EdgeTest extends \PHPUnit\Framework\TestCase { /** * @testdox The edge has the expected default values after initialization - * @covers phpOMS\Stdlib\Graph\Edge + * @covers \phpOMS\Stdlib\Graph\Edge * @group framework */ public function testDefault() : void @@ -41,7 +41,7 @@ final class EdgeTest extends \PHPUnit\Framework\TestCase /** * @testdox An edge can be directed - * @covers phpOMS\Stdlib\Graph\Edge + * @covers \phpOMS\Stdlib\Graph\Edge * @group framework */ public function testDirected() : void @@ -52,7 +52,7 @@ final class EdgeTest extends \PHPUnit\Framework\TestCase /** * @testdox An edge weight can be set and returned - * @covers phpOMS\Stdlib\Graph\Edge + * @covers \phpOMS\Stdlib\Graph\Edge * @group framework */ public function testWeightInputOutput() : void @@ -67,7 +67,7 @@ final class EdgeTest extends \PHPUnit\Framework\TestCase /** * @testdox Two edge weights can be compared - * @covers phpOMS\Stdlib\Graph\Edge + * @covers \phpOMS\Stdlib\Graph\Edge * @group framework */ public function testWeightComparison() : void diff --git a/tests/Stdlib/Graph/GraphTest.php b/tests/Stdlib/Graph/GraphTest.php index 26d8d3408..4614c7845 100755 --- a/tests/Stdlib/Graph/GraphTest.php +++ b/tests/Stdlib/Graph/GraphTest.php @@ -38,7 +38,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox The graph has the expected default values after initialization - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testDefault() : void @@ -71,7 +71,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox A graph can ge set as directed - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testDirectedOutput() : void @@ -90,7 +90,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox A node can be add to a graph and returned - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testNodeInputOutput() : void @@ -103,7 +103,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox The existence of a node in a graph can be checked - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testNodeExists() : void @@ -117,7 +117,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox A graph can be checked for bridges - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testGraphWithBridge() : void @@ -155,7 +155,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox Multiple bridges are correctly identified in a graph - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testGraphWithBridges() : void @@ -180,7 +180,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox A graph without bridges is correctly classified - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testGraphWithoutBridges() : void @@ -203,7 +203,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox Edges can be add and returned from a graph - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testEdgesInputOutput() : void @@ -239,7 +239,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox An edge can be found by two edge ids - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testEdgeInputOutput() : void @@ -284,7 +284,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox The existence of cycles in undirected graphs can be checked - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testUndirectedCycle() : void @@ -311,7 +311,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox The existence of cycles in directed graphs can be checked - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testDirectedCycle() : void @@ -341,7 +341,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox The cost of a graph can be calculated - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testCost() : void @@ -364,7 +364,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * @testdox The Kruskal minimal spanning tree can be created - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testKruskalMinimalSpanningTree() : void @@ -410,7 +410,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testFindAllReachableNodesDFS() : void @@ -450,7 +450,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testGetAllPathsBetweenNodes() : void @@ -490,7 +490,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testCountAllPathsBetweenNodes() : void @@ -529,7 +529,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testLongestPathBetweenNodes() : void @@ -572,7 +572,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testShortestPathBetweenNodes() : void @@ -612,7 +612,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testShortestPathFloydWarshall() : void @@ -652,7 +652,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testLongestPathsDfs() : void @@ -692,7 +692,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 6 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testUnconnectedGraph() : void @@ -731,7 +731,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testConnectedGraph() : void @@ -768,7 +768,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testDiameter() : void @@ -805,7 +805,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testGirth() : void @@ -842,7 +842,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testCircuitRank() : void @@ -879,7 +879,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | / * 2 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testStronglyConnected() : void @@ -907,7 +907,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase /** * 0 - 1 - 2 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testInvalidStronglyConnected() : void @@ -933,7 +933,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testBipartite() : void @@ -970,7 +970,7 @@ final class GraphTest extends \PHPUnit\Framework\TestCase * \ | \ / * 2 4 * - * @covers phpOMS\Stdlib\Graph\Graph + * @covers \phpOMS\Stdlib\Graph\Graph * @group framework */ public function testTriangles() : void diff --git a/tests/Stdlib/Graph/NodeTest.php b/tests/Stdlib/Graph/NodeTest.php index a399d7706..93dd3f5d2 100755 --- a/tests/Stdlib/Graph/NodeTest.php +++ b/tests/Stdlib/Graph/NodeTest.php @@ -26,7 +26,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase { /** * @testdox The node has the expected default values after initialization - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testDefault() : void @@ -41,7 +41,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox The node data can be set and returned - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testDataInputOutput() : void @@ -55,7 +55,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Two equal nodes are equal - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testNodesEqual() : void @@ -66,7 +66,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Two different nodes are not equal - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testNodesNotEqual() : void @@ -84,7 +84,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox An edge for a node can be defined - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testEdgeInputOutput() : void @@ -97,7 +97,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox Edges can be removed from a node - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testEdgeRemove() : void @@ -111,7 +111,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox An edge for a node can be defined by key - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testEdgeKeyInputOutput() : void @@ -125,7 +125,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox A node relationship can be defined - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework */ public function testNodeRelation() : void @@ -140,7 +140,7 @@ final class NodeTest extends \PHPUnit\Framework\TestCase /** * @testdox All neighbors of a node can be returned - * @covers phpOMS\Stdlib\Graph\Node + * @covers \phpOMS\Stdlib\Graph\Node * @group framework * * @bug Directed graphs may return invalid neighbors diff --git a/tests/Stdlib/Map/MultiMapTest.php b/tests/Stdlib/Map/MultiMapTest.php index 66d29e2c7..94086c6cd 100755 --- a/tests/Stdlib/Map/MultiMapTest.php +++ b/tests/Stdlib/Map/MultiMapTest.php @@ -27,7 +27,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase { /** * @testdox The map has the expected default values and functionality after initialization - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testDefault() : void @@ -48,7 +48,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple optional keys can be added - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicAddAny() : void @@ -62,7 +62,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple optional keys can be returned if any of the keys matches - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicGetAny() : void @@ -76,7 +76,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements can be forcefully overwritten - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testOverwriteAny() : void @@ -94,7 +94,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox By default elements are not overwritten - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidOverwriteSubkeyAny() : void @@ -112,7 +112,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If a element with partially matching keys is already in the map it will be only added for the new key - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testOverwriteCreateAny() : void @@ -131,7 +131,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If all keys exist in the map no new element will be created - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidOverwriteAny() : void @@ -150,7 +150,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Values can be set/replaced by key - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testSetByKeyAny() : void @@ -170,7 +170,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Values cannot be set/replaced if the key doesn't exist - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidSetByKeyAny() : void @@ -187,7 +187,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox A key cannot be remapped to a none-existing key - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidRemapNewAny() : void @@ -204,7 +204,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox A key can be remapped to the value of an existing key - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testRemapAny() : void @@ -224,7 +224,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If no more keys are associated with a value after a remap the value is removed from the map - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testRemapUnmapAny() : void @@ -244,7 +244,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox All keys of the map can be returned - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testMapKeysAny() : void @@ -263,7 +263,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox All values of the map can be returned - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testMapValuesAny() : void @@ -282,7 +282,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Sibling keys can be found - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testSiblingsAny() : void @@ -297,7 +297,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If a key doesn't exist or has no siblings no siblings are returned - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidSiblingsAny() : void @@ -312,7 +312,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox A key for a value can be removed - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testRemoveAny() : void @@ -330,7 +330,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If the last key of a value is removed the value is also removed from the map - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testRemoveLastAny() : void @@ -350,7 +350,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If a key doesn't exist it cannot be removed - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidRemoveAny() : void @@ -366,7 +366,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required keys can be added - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicAddExact() : void @@ -380,7 +380,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required keys can be returned if all match - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicGetExact() : void @@ -394,7 +394,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required keys cannot be returned if they don't match exactly - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicInvalidGetExact() : void @@ -407,7 +407,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required and ordered keys can be added - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicAddExactOrdered() : void @@ -421,7 +421,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required ordered keys can be if all match in the correct order - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicGetExactOrdered() : void @@ -434,7 +434,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required keys cannot be returned if they don't match exactly in the correct order - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testBasicInvalidOrderedGetExact() : void @@ -447,7 +447,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required keys can be forcefully overwritten - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testOverwriteExact() : void @@ -463,7 +463,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Elements with multiple required ordered keys can be forcefully overwritten - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testOverwriteExactOrdered() : void @@ -479,7 +479,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox An element cannot be added to for multiple required keys if the keys already exist in a different order - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidAddDifferentOrderExact() : void @@ -496,7 +496,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If a element with partially matching multiple keys is already in the map it will be only added for the new key - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testOverwriteCreateExact() : void @@ -515,7 +515,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Adding differently ordered keys for multiple required keys will create a new entry in the map - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testAddDifferentlyOrderedKeys() : void @@ -532,7 +532,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If all keys for multiple required keys exist in the map no new element will be created - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidOverwriteExact() : void @@ -550,7 +550,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If all keys for multiple required ordered keys exist in the map no new element will be created - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidOverwriteExactOrdered() : void @@ -568,7 +568,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Values can be set/replaced by multiple required keys - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testSetByKeyExact() : void @@ -588,7 +588,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Values cannot be set/replaced if the multiple required keys don't match or exist - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidSetByKeyExact() : void @@ -608,7 +608,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Values can be set/replaced by multiple required ordered keys if the order is correct - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testSetByKeyExactOrdered() : void @@ -626,7 +626,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Values cannot be set/replaced if the multiple required ordered keys don't match or exist in the correct order - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidSetByKeyExactOrdered() : void @@ -643,7 +643,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox Multiple keys cannot be remapped - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidRemapExact() : void @@ -658,7 +658,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox All sibling key combinations can be found for multiple required keys - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testSiblingsExact() : void @@ -671,7 +671,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox For multiple required ordered keys don't exist any siblings - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testSiblingsExactOrdered() : void @@ -684,7 +684,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox A multiple required key combination for a value can be removed - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testRemoveExact() : void @@ -702,7 +702,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If a multiple required key combination doesn't exist it cannot be removed - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidRemoveExact() : void @@ -721,7 +721,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox A multiple required ordered key combination for a value can be removed - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testRemoveExactOrdered() : void @@ -739,7 +739,7 @@ final class MultiMapTest extends \PHPUnit\Framework\TestCase /** * @testdox If a multiple required ordered key combination doesn't exist it cannot be removed - * @covers phpOMS\Stdlib\Map\MultiMap + * @covers \phpOMS\Stdlib\Map\MultiMap * @group framework */ public function testInvalidRemoveExactOrdered() : void diff --git a/tests/Stdlib/Queue/PriorityQueueTest.php b/tests/Stdlib/Queue/PriorityQueueTest.php index 38439e68c..ea4889ecc 100755 --- a/tests/Stdlib/Queue/PriorityQueueTest.php +++ b/tests/Stdlib/Queue/PriorityQueueTest.php @@ -26,7 +26,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase { /** * @testdox The queue has the expected default values and functionality after initialization - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testDefault() : void @@ -41,7 +41,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox Queue elements can be added with the default value of 1.0 and returned - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testInputOutput() : void @@ -54,7 +54,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox Queue elements can be added with a priority - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testAddWithPriority() : void @@ -70,7 +70,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox The priority queue returns the correct amount of elements it holds - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testCount() : void @@ -85,7 +85,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A queue element can be removed - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testRemove() : void @@ -102,7 +102,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing queue element id cannot be removed - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testInvalidRemove() : void @@ -120,7 +120,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A removed or none-existing queue element returns a empty data - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testInvalidGet() : void @@ -135,7 +135,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox The priority of all queue elements can be uniformly increased - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testPriorityIncreaseAll() : void @@ -157,7 +157,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox The priority or a queue element can be changed - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testPriorityChange() : void @@ -175,7 +175,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox The queue can be serialized and unserialized - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testSerialize() : void @@ -194,7 +194,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A queue element can be popped from the que which also removes it from the queue - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testPop() : void @@ -210,7 +210,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A FIFO queue returns the elements in FIFO order - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testFIFO() : void @@ -228,7 +228,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A LIFO queue returns the elements in LIFO order - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testLIFO() : void @@ -246,7 +246,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A highest queue returns the elements in highest priority order - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testHighest() : void @@ -264,7 +264,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A lowest queue returns the elements in lowest priority order - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testLowest() : void @@ -282,7 +282,7 @@ final class PriorityQueueTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid priority queue type throws a InvalidEnumValue - * @covers phpOMS\Stdlib\Queue\PriorityQueue + * @covers \phpOMS\Stdlib\Queue\PriorityQueue * @group framework */ public function testInvalidPriority() : void diff --git a/tests/System/File/FileUtilsTest.php b/tests/System/File/FileUtilsTest.php index 0eea5cebe..d98f13c75 100755 --- a/tests/System/File/FileUtilsTest.php +++ b/tests/System/File/FileUtilsTest.php @@ -26,7 +26,7 @@ final class FileUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox File extensions can be categorized - * @covers phpOMS\System\File\FileUtils + * @covers \phpOMS\System\File\FileUtils * @group framework */ public function testExtension() : void @@ -49,7 +49,7 @@ final class FileUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A relative path can be turned into an absolute path - * @covers phpOMS\System\File\FileUtils + * @covers \phpOMS\System\File\FileUtils * @group framework */ public function testAbsolute() : void @@ -60,7 +60,7 @@ final class FileUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Permissions can be turned into octal values - * @covers phpOMS\System\File\FileUtils + * @covers \phpOMS\System\File\FileUtils * @group framework */ public function testPermissionToOctal() : void @@ -70,7 +70,7 @@ final class FileUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The encoding of a file can be changed - * @covers phpOMS\System\File\FileUtils + * @covers \phpOMS\System\File\FileUtils * @group framework */ public function testChangeFileEncoding() : void @@ -92,7 +92,7 @@ final class FileUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The file information can be resolved from a path - * @covers phpOMS\System\File\FileUtils + * @covers \phpOMS\System\File\FileUtils * @group framework */ public function testPathInfo() : void diff --git a/tests/System/File/Ftp/DirectoryTest.php b/tests/System/File/Ftp/DirectoryTest.php index 1c83e6106..5f397fc40 100755 --- a/tests/System/File/Ftp/DirectoryTest.php +++ b/tests/System/File/Ftp/DirectoryTest.php @@ -72,7 +72,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testConnection() : void @@ -81,7 +81,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidConnection() : void @@ -91,7 +91,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be created - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticCreate() : void @@ -105,7 +105,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be checked for existence - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticExists() : void @@ -116,7 +116,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox An existing directory cannot be overwritten - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidStaticOverwrite() : void @@ -130,7 +130,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be forced to be created recursively - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticSubdir() : void @@ -146,7 +146,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox By default a directory is not created recursively - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidStaticSubdir() : void @@ -156,7 +156,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a directory is just its name without its path - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticName() : void @@ -168,7 +168,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename is the same as the name of the directory - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticBasename() : void @@ -180,7 +180,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The dirname is the same as the name of the directory - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticDirname() : void @@ -192,7 +192,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent of a directory can be returned - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticParent() : void @@ -204,7 +204,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The full absolute path of a directory can be returned - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticDirectoryPath() : void @@ -216,7 +216,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticCreatedAt() : void @@ -235,7 +235,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticChangedAt() : void @@ -254,7 +254,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be deleted - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticDelete() : void @@ -268,7 +268,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory cannot be deleted - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidStaticDelete() : void @@ -280,7 +280,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a directory can be returned - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticSizeRecursive() : void @@ -291,7 +291,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing directory is negative - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidStaticSizeRecursive() : void @@ -302,7 +302,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The recursive size of a directory is equals or greater than the size of the same directory none-recursive - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticSize() : void @@ -313,7 +313,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a directory can be returned - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticPermission() : void @@ -324,7 +324,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing directory is negative - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidStaticPermission() : void @@ -335,7 +335,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be copied recursively - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticCopy() : void @@ -348,7 +348,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticCopyOverwrite() : void @@ -363,7 +363,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticInvalidCopyOverwrite() : void @@ -377,7 +377,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be moved/renamed to a different path - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticMove() : void @@ -391,7 +391,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticInvalidMoveOverwrite() : void @@ -405,7 +405,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticMoveOverwrite() : void @@ -423,7 +423,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned recursively - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticCountRecursive() : void @@ -434,7 +434,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned none-recursively - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticCount() : void @@ -445,7 +445,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files of a none-existing directory is negative - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidStaticCount() : void @@ -456,7 +456,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox All files and sub-directories of a directory can be listed - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticListFiles() : void @@ -466,7 +466,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticListFilesByExtension() : void @@ -476,7 +476,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testStaticOwner() : void @@ -486,7 +486,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testDirectoryNameSanitizing() : void @@ -496,7 +496,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory returns a empty list of files and sub-directories - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidListPath() : void @@ -505,7 +505,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidListFilesByExtension() : void @@ -515,7 +515,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be copied to a new destination - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidCopyPath() : void @@ -525,7 +525,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be moved to a new destination - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidMovePath() : void @@ -535,7 +535,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the creation date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidCreatedPath() : void @@ -547,7 +547,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidChangedPath() : void @@ -559,7 +559,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testInvalidOwnerPath() : void @@ -570,7 +570,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testList() : void @@ -585,7 +585,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeOutput() : void @@ -597,7 +597,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeCreate() : void @@ -616,7 +616,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeDelete() : void @@ -632,7 +632,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeCopy() : void @@ -648,7 +648,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeMove() : void @@ -664,7 +664,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeExists() : void @@ -677,7 +677,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testParentOutput() : void @@ -688,7 +688,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeNext() : void @@ -700,7 +700,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeCurrent() : void @@ -711,7 +711,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeKey() : void @@ -725,7 +725,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeArrayRead() : void @@ -736,7 +736,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeArraySet() : void @@ -754,7 +754,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeArrayRemove() : void @@ -770,7 +770,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeArrayExists() : void @@ -782,7 +782,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeCreatedAt() : void @@ -799,7 +799,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeChangedAt() : void @@ -816,7 +816,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeOwner() : void @@ -827,7 +827,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodePermission() : void @@ -838,7 +838,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testDirname() : void @@ -850,7 +850,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testName() : void @@ -862,7 +862,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testBaseame() : void @@ -874,7 +874,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testDirpath() : void @@ -886,7 +886,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeValid() : void @@ -898,7 +898,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\Directory + * @covers \phpOMS\System\File\Ftp\Directory * @group framework */ public function testNodeInvalid() : void diff --git a/tests/System/File/Ftp/FileTest.php b/tests/System/File/Ftp/FileTest.php index 74efbc90a..e70b028d6 100755 --- a/tests/System/File/Ftp/FileTest.php +++ b/tests/System/File/Ftp/FileTest.php @@ -76,7 +76,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testConnection() : void @@ -85,7 +85,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidConnection() : void @@ -95,7 +95,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file without content can be created - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticCreate() : void @@ -110,7 +110,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be created if it already exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticCreate() : void @@ -125,7 +125,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with content can be created - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticPut() : void @@ -140,7 +140,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be replaced if it doesn't exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticCreateReplace() : void @@ -152,7 +152,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be appended if it doesn't exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticCreateAppend() : void @@ -164,7 +164,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be prepended if it doesn't exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticCreatePrepend() : void @@ -176,7 +176,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be checked for existence - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticExists() : void @@ -187,7 +187,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be replaced with a new one - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticReplace() : void @@ -203,7 +203,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The set alias works like the replace flag - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticSetAlias() : void @@ -219,7 +219,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be appended with additional content - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticAppend() : void @@ -235,7 +235,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The append alias works like the append flag - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticAppendAlias() : void @@ -251,7 +251,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be prepended with additional content - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticPrepend() : void @@ -267,7 +267,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The prepend alias works like the prepend flag - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticPrependAlias() : void @@ -283,7 +283,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The content of a file can be read - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticGet() : void @@ -297,7 +297,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent directory of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticParent() : void @@ -309,7 +309,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The extension of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticExtension() : void @@ -321,7 +321,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticName() : void @@ -333,7 +333,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticBaseName() : void @@ -345,7 +345,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The file name of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticDirname() : void @@ -357,7 +357,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The file path of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticDirectoryPath() : void @@ -369,7 +369,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The count of a file is always 1 - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticCount() : void @@ -381,7 +381,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticCreatedAt() : void @@ -399,7 +399,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticChangedAt() : void @@ -417,7 +417,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be deleted - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticDelete() : void @@ -431,7 +431,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be deleted - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticDelete() : void @@ -443,7 +443,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticSize() : void @@ -460,7 +460,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a file can be returned - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticPermission() : void @@ -477,7 +477,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing file is negative - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticPermission() : void @@ -488,7 +488,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be copied to a different location - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticCopy() : void @@ -511,7 +511,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be copied to a different location if the destination already exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticCopy() : void @@ -531,7 +531,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be copied to a different location even if the destination already exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticCopyOverwrite() : void @@ -551,7 +551,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be moved to a different location - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticMove() : void @@ -571,7 +571,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be moved to a different location if the destination already exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidStaticMove() : void @@ -592,7 +592,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be moved to a different location even if the destination already exists - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticMoveOverwrite() : void @@ -611,7 +611,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testStaticOwner() : void @@ -621,7 +621,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testFileNameSanitizing() : void @@ -631,7 +631,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing file is negative - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidSizePath() : void @@ -641,7 +641,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be copied - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidCopyPath() : void @@ -651,7 +651,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be moved - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidMovePath() : void @@ -661,7 +661,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the content of a none-existing file returns an empty string - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidGetPath() : void @@ -671,7 +671,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the created date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidCreatedPath() : void @@ -683,7 +683,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidChangedPath() : void @@ -695,7 +695,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing file throws a PathException - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testInvalidOwnerPath() : void @@ -706,7 +706,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeInputOutput() : void @@ -726,7 +726,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeReplace() : void @@ -747,7 +747,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeAppend() : void @@ -768,7 +768,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodePrepend() : void @@ -789,7 +789,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeExtension() : void @@ -801,7 +801,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeCreatedAt() : void @@ -824,7 +824,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeChangedAt() : void @@ -847,7 +847,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeOwner() : void @@ -859,7 +859,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodePermission() : void @@ -871,7 +871,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testDirname() : void @@ -883,7 +883,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testName() : void @@ -895,7 +895,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testBaseame() : void @@ -907,7 +907,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testDirpath() : void @@ -919,7 +919,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testParentOutput() : void @@ -931,7 +931,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeCreate() : void @@ -952,7 +952,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeDelete() : void @@ -977,7 +977,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeCopy() : void @@ -1004,7 +1004,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeMove() : void @@ -1027,7 +1027,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeExists() : void @@ -1040,7 +1040,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeParent() : void @@ -1051,7 +1051,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\File + * @covers \phpOMS\System\File\Ftp\File * @group framework */ public function testNodeDirectory() : void diff --git a/tests/System/File/Ftp/FtpStorageTest.php b/tests/System/File/Ftp/FtpStorageTest.php index 57ea442f0..555d906ea 100755 --- a/tests/System/File/Ftp/FtpStorageTest.php +++ b/tests/System/File/Ftp/FtpStorageTest.php @@ -82,7 +82,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be created - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCreateDirectory() : void @@ -96,7 +96,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be checked for existence - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticExistsDirectory() : void @@ -107,7 +107,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox An existing directory cannot be overwritten - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticOverwriteDirectory() : void @@ -121,7 +121,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be forced to be created recursively - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticSubdirDirectory() : void @@ -137,7 +137,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a directory is just its name without its path - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticNameDirectory() : void @@ -149,7 +149,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename is the same as the name of the directory - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticBasenameDirectory() : void @@ -161,7 +161,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The dirname is the same as the name of the directory - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticDirnameDirectory() : void @@ -173,7 +173,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent of a directory can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticParentDirectory() : void @@ -185,7 +185,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The full absolute path of a directory can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticDirectoryPathDirectory() : void @@ -197,7 +197,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCreatedAtDirectory() : void @@ -216,7 +216,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticChangedAtDirectory() : void @@ -235,7 +235,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be deleted - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticDeleteDirectory() : void @@ -249,7 +249,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory cannot be deleted - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticDeleteDirectory() : void @@ -261,7 +261,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a directory can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticSizeRecursiveDirectory() : void @@ -272,7 +272,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing directory is negative - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticSizeRecursiveDirectory() : void @@ -283,7 +283,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The recursive size of a directory is equals or greater than the size of the same directory none-recursive - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticSizeDirectory() : void @@ -294,7 +294,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a directory can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticPermissionDirectory() : void @@ -305,7 +305,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing directory is negative - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticPermissionDirectory() : void @@ -316,7 +316,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be copied recursively - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCopyDirectory() : void @@ -330,7 +330,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be moved/renamed to a different path - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticMoveDirectory() : void @@ -345,7 +345,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned recursively - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCountRecursiveDirectory() : void @@ -356,7 +356,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned none-recursively - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCountDirectory() : void @@ -367,7 +367,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files of a none-existing directory is negative - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticCountDirectory() : void @@ -378,7 +378,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox All files and sub-directories of a directory can be listed - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticListFilesDirectory() : void @@ -389,7 +389,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory returns a empty list of files and sub-directories - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidListPathDirectory() : void @@ -399,7 +399,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be copied to a new destination - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidCopyPathDirectory() : void @@ -409,7 +409,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be moved to a new destination - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidMovePathDirectory() : void @@ -419,7 +419,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the creation date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidCreatedPathDirectory() : void @@ -431,7 +431,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidChangedPathDirectory() : void @@ -443,7 +443,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidOwnerPathDirectory() : void @@ -455,7 +455,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file without content can be created - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCreateFile() : void @@ -470,7 +470,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be created if it already exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticCreateFile() : void @@ -485,7 +485,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with content can be created - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticPutFile() : void @@ -500,7 +500,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be replaced if it doesn't exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticCreateReplaceFile() : void @@ -512,7 +512,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be appended if it doesn't exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticCreateAppendFile() : void @@ -524,7 +524,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be prepended if it doesn't exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticCreatePrependFile() : void @@ -536,7 +536,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be checked for existence - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticExistsFile() : void @@ -547,7 +547,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be replaced with a new one - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticReplaceFile() : void @@ -563,7 +563,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The set alias works like the replace flag - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticSetAliasFile() : void @@ -579,7 +579,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be appended with additional content - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticAppendFile() : void @@ -595,7 +595,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The append alias works like the append flag - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticAppendAliasFile() : void @@ -611,7 +611,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be prepended with additional content - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticPrependFile() : void @@ -627,7 +627,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The prepend alias works like the prepend flag - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticPrependAliasFile() : void @@ -643,7 +643,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The content of a file can be read - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticGetFile() : void @@ -657,7 +657,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent directory of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticParentFile() : void @@ -669,7 +669,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The extension of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticExtensionFile() : void @@ -681,7 +681,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticNameFile() : void @@ -693,7 +693,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticBaseNameFile() : void @@ -705,7 +705,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The file name of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticDirnameFile() : void @@ -717,7 +717,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The file path of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticDirectoryPathFile() : void @@ -729,7 +729,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The count of a file is always 1 - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCountFile() : void @@ -741,7 +741,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCreatedAtFile() : void @@ -757,7 +757,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticChangedAtFile() : void @@ -773,7 +773,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be deleted - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticDeleteFile() : void @@ -787,7 +787,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be deleted - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticDeleteFile() : void @@ -799,7 +799,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticSizeFile() : void @@ -814,7 +814,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a file can be returned - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticPermissionFile() : void @@ -829,7 +829,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing file is negative - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticPermissionFile() : void @@ -840,7 +840,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be copied to a different location - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCopyFile() : void @@ -863,7 +863,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be copied to a different location if the destination already exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticCopyFile() : void @@ -883,7 +883,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be copied to a different location even if the destination already exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticCopyOverwriteFile() : void @@ -903,7 +903,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be moved to a different location - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticMoveFile() : void @@ -925,7 +925,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be moved to a different location if the destination already exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidStaticMoveFile() : void @@ -946,7 +946,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be moved to a different location even if the destination already exists - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testStaticMoveOverwriteFile() : void @@ -966,7 +966,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testSanitize() : void @@ -976,7 +976,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing file is negative - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidSizePathFile() : void @@ -986,7 +986,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be copied - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidCopyPathFile() : void @@ -996,7 +996,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be moved - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidMovePathFile() : void @@ -1006,7 +1006,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the content of a none-existing file returns an empty result - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidGetPathFile() : void @@ -1016,7 +1016,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the created date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidCreatedPathFile() : void @@ -1028,7 +1028,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidChangedPathFile() : void @@ -1040,7 +1040,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing file throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidOwnerPathFile() : void @@ -1052,7 +1052,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Writing data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidPutPath() : void @@ -1064,7 +1064,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading data from a directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidGetPath() : void @@ -1076,7 +1076,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Trying to run list on a file throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidListPath() : void @@ -1088,7 +1088,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidSetPath() : void @@ -1100,7 +1100,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Appending data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidAppendPath() : void @@ -1112,7 +1112,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Prepending data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidPrependPath() : void @@ -1124,7 +1124,7 @@ final class FtpStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the extension of a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Ftp\FtpStorage + * @covers \phpOMS\System\File\Ftp\FtpStorage * @group framework */ public function testInvalidExtensionPath() : void diff --git a/tests/System/File/Ftp/newdirtest/sub/path/test3.txt b/tests/System/File/Ftp/newdirtest/sub/path/test3.txt new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/tests/System/File/Ftp/newdirtest/sub/path/test3.txt @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/tests/System/File/Ftp/newdirtest/sub/test2.txt b/tests/System/File/Ftp/newdirtest/sub/test2.txt new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/tests/System/File/Ftp/newdirtest/sub/test2.txt @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/tests/System/File/Ftp/newdirtest/sub/test4.md b/tests/System/File/Ftp/newdirtest/sub/test4.md new file mode 100644 index 000000000..e69de29bb diff --git a/tests/System/File/Ftp/newdirtest/test.txt b/tests/System/File/Ftp/newdirtest/test.txt new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/tests/System/File/Ftp/newdirtest/test.txt @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/tests/System/File/Local/DirectoryTest.php b/tests/System/File/Local/DirectoryTest.php index 10dfe8cf6..09d4a2deb 100755 --- a/tests/System/File/Local/DirectoryTest.php +++ b/tests/System/File/Local/DirectoryTest.php @@ -25,7 +25,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase { /** * @testdox A directory can be created - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticCreate() : void @@ -39,7 +39,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be checked for existence - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticExists() : void @@ -50,7 +50,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox An existing directory cannot be overwritten - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidStaticOverwrite() : void @@ -64,7 +64,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be forced to be created recursively - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticSubdir() : void @@ -80,7 +80,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox By default a directory is not created recursively - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidStaticSubdir() : void @@ -90,7 +90,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a directory is just its name without its path - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticName() : void @@ -102,7 +102,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename is the same as the name of the directory - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticBasename() : void @@ -114,7 +114,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The dirname is the same as the name of the directory - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticDirname() : void @@ -126,7 +126,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent of a directory can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticParent() : void @@ -138,7 +138,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The full absolute path of a directory can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticDirectoryPath() : void @@ -150,7 +150,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticCreatedAt() : void @@ -167,7 +167,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticChangedAt() : void @@ -184,7 +184,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be deleted - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticDelete() : void @@ -198,7 +198,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory cannot be deleted - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidStaticDelete() : void @@ -210,7 +210,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a directory can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticSizeRecursive() : void @@ -221,7 +221,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing directory is negative - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidStaticSizeRecursive() : void @@ -232,7 +232,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The recursive size of a directory is equals or greater than the size of the same directory none-recursive - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticSize() : void @@ -243,7 +243,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a directory can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticPermission() : void @@ -254,7 +254,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing directory is negative - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidStaticPermission() : void @@ -265,7 +265,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be copied recursively - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticCopy() : void @@ -279,7 +279,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be forced to be copied to a different location even if the destination already exists - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticCopyOverwrite() : void @@ -295,7 +295,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox By default a directory is not overwritten on copy - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticInvalidCopyOverwrite() : void @@ -309,7 +309,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be moved/renamed to a different path - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticMove() : void @@ -325,7 +325,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox By default a directory is not overwritten on move - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticInvalidMoveOverwrite() : void @@ -340,7 +340,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be forced to be moved/renamed to a different path even if the destination already exists - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticMoveOverwrite() : void @@ -358,7 +358,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned recursively - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticCountRecursive() : void @@ -369,7 +369,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned none-recursively - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticCount() : void @@ -380,7 +380,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files of a none-existing directory is negative - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidStaticCount() : void @@ -391,7 +391,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox All files and sub-directories of a directory can be listed - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticListFiles() : void @@ -405,7 +405,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox All files of a directory can be listed by file extension - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticListFilesByExtension() : void @@ -416,7 +416,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The owner of a directory can be returned - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testStaticOwner() : void @@ -427,7 +427,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid directory names and paths can be sanitized - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testDirectoryNameSanitizing() : void @@ -437,7 +437,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory returns a empty list of files and sub-directories - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidListPath() : void @@ -447,7 +447,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory returns a empty list of files for the extension - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidListFilesByExtension() : void @@ -457,7 +457,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be copied to a new destination - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidCopyPath() : void @@ -467,7 +467,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be moved to a new destination - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidMovePath() : void @@ -477,7 +477,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the creation date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidCreatedPath() : void @@ -489,7 +489,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidChangedPath() : void @@ -501,7 +501,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testInvalidOwnerPath() : void @@ -512,7 +512,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testList() : void @@ -527,7 +527,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeOutput() : void @@ -539,7 +539,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeCreate() : void @@ -558,7 +558,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeDelete() : void @@ -572,7 +572,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeCopy() : void @@ -588,7 +588,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeMove() : void @@ -604,7 +604,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeExists() : void @@ -617,7 +617,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testParentOutput() : void @@ -628,7 +628,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeNext() : void @@ -640,7 +640,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeCurrent() : void @@ -651,7 +651,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeKey() : void @@ -665,7 +665,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeArrayRead() : void @@ -676,7 +676,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeArraySet() : void @@ -694,7 +694,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeArrayRemove() : void @@ -708,7 +708,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeArrayExists() : void @@ -720,7 +720,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeCreatedAt() : void @@ -737,7 +737,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeChangedAt() : void @@ -754,7 +754,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodeOwner() : void @@ -765,7 +765,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testNodePermission() : void @@ -776,7 +776,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testDirname() : void @@ -788,7 +788,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testName() : void @@ -800,7 +800,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testBaseame() : void @@ -812,7 +812,7 @@ final class DirectoryTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\Directory + * @covers \phpOMS\System\File\Local\Directory * @group framework */ public function testDirpath() : void diff --git a/tests/System/File/Local/FileTest.php b/tests/System/File/Local/FileTest.php index 47a0b6c23..aab5cfb34 100755 --- a/tests/System/File/Local/FileTest.php +++ b/tests/System/File/Local/FileTest.php @@ -26,7 +26,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase { /** * @testdox A file without content can be created - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticCreate() : void @@ -50,7 +50,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be created if it already exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticCreate() : void @@ -69,7 +69,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with content can be created - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticPut() : void @@ -93,7 +93,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be replaced if it doesn't exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticCreateReplace() : void @@ -109,7 +109,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be appended if it doesn't exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticCreateAppend() : void @@ -125,7 +125,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be prepended if it doesn't exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticCreatePrepend() : void @@ -141,7 +141,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be checked for existence - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticExists() : void @@ -152,7 +152,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be replaced with a new one - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticReplace() : void @@ -172,7 +172,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The set alias works like the replace flag - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticSetAlias() : void @@ -192,7 +192,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be appended with additional content - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticAppend() : void @@ -212,7 +212,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The append alias works like the append flag - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticAppendAlias() : void @@ -232,7 +232,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be prepended with additional content - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticPrepend() : void @@ -252,7 +252,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The prepend alias works like the prepend flag - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticPrependAlias() : void @@ -272,7 +272,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The content of a file can be read - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticGet() : void @@ -290,7 +290,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent directory of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticParent() : void @@ -302,7 +302,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The extension of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticExtension() : void @@ -314,7 +314,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticName() : void @@ -326,7 +326,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticBaseName() : void @@ -338,7 +338,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The file name of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticDirname() : void @@ -350,7 +350,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The file path of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticDirectoryPath() : void @@ -362,7 +362,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The count of a file is always 1 - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticCount() : void @@ -374,7 +374,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticCreatedAt() : void @@ -390,7 +390,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticChangedAt() : void @@ -406,7 +406,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be deleted - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticDelete() : void @@ -420,7 +420,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be deleted - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticDelete() : void @@ -432,7 +432,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticSize() : void @@ -451,7 +451,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a file can be returned - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticPermission() : void @@ -470,7 +470,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing file is negative - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticPermission() : void @@ -480,7 +480,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testPathInfo() : void @@ -498,7 +498,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be copied to a different location - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticCopy() : void @@ -525,7 +525,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be copied to a different location if the destination already exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticCopy() : void @@ -552,7 +552,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be copied to a different location even if the destination already exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticCopyOverwrite() : void @@ -579,7 +579,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be moved to a different location - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticMove() : void @@ -605,7 +605,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be moved to a different location if the destination already exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidStaticMove() : void @@ -630,7 +630,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be moved to a different location even if the destination already exists - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticMoveOverwrite() : void @@ -653,7 +653,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testStaticOwner() : void @@ -663,7 +663,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testFileNameSanitizing() : void @@ -673,7 +673,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing file is negative - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidSizePath() : void @@ -683,7 +683,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be copied - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidCopyPath() : void @@ -693,7 +693,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be moved - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidMovePath() : void @@ -703,7 +703,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the content of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidGetPath() : void @@ -715,7 +715,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the created date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidCreatedPath() : void @@ -727,7 +727,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidChangedPath() : void @@ -739,7 +739,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testInvalidOwnerPath() : void @@ -750,7 +750,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeInputOutput() : void @@ -768,7 +768,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeReplace() : void @@ -787,7 +787,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeAppend() : void @@ -806,7 +806,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodePrepend() : void @@ -825,7 +825,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeExtension() : void @@ -837,7 +837,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeCreatedAt() : void @@ -858,7 +858,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeChangedAt() : void @@ -879,7 +879,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeOwner() : void @@ -891,7 +891,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodePermission() : void @@ -903,7 +903,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testDirname() : void @@ -915,7 +915,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testName() : void @@ -927,7 +927,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testBaseame() : void @@ -939,7 +939,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testDirpath() : void @@ -951,7 +951,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testParentOutput() : void @@ -963,7 +963,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeCreate() : void @@ -982,7 +982,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeDelete() : void @@ -1001,7 +1001,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeCopy() : void @@ -1023,7 +1023,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeMove() : void @@ -1044,7 +1044,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeExists() : void @@ -1057,7 +1057,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeParent() : void @@ -1068,7 +1068,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\File + * @covers \phpOMS\System\File\Local\File * @group framework */ public function testNodeDirectory() : void diff --git a/tests/System/File/Local/LocalStorageTest.php b/tests/System/File/Local/LocalStorageTest.php index eddd691a3..e5dff3d2e 100755 --- a/tests/System/File/Local/LocalStorageTest.php +++ b/tests/System/File/Local/LocalStorageTest.php @@ -26,7 +26,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase { /** * @testdox A directory can be created - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCreateDirectory() : void @@ -40,7 +40,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be checked for existence - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticExistsDirectory() : void @@ -51,7 +51,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox An existing directory cannot be overwritten - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticOverwriteDirectory() : void @@ -65,7 +65,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be forced to be created recursively - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticSubdirDirectory() : void @@ -81,7 +81,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a directory is just its name without its path - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticNameDirectory() : void @@ -93,7 +93,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename is the same as the name of the directory - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticBasenameDirectory() : void @@ -105,7 +105,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The dirname is the same as the name of the directory - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticDirnameDirectory() : void @@ -117,7 +117,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent of a directory can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticParentDirectory() : void @@ -129,7 +129,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The full absolute path of a directory can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticDirectoryPathDirectory() : void @@ -141,7 +141,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCreatedAtDirectory() : void @@ -158,7 +158,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticChangedAtDirectory() : void @@ -175,7 +175,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be deleted - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticDeleteDirectory() : void @@ -189,7 +189,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory cannot be deleted - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticDeleteDirectory() : void @@ -201,7 +201,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a directory can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticSizeRecursiveDirectory() : void @@ -212,7 +212,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing directory is negative - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticSizeRecursiveDirectory() : void @@ -223,7 +223,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The recursive size of a directory is equals or greater than the size of the same directory none-recursive - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticSizeDirectory() : void @@ -234,7 +234,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a directory can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticPermissionDirectory() : void @@ -245,7 +245,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing directory is negative - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticPermissionDirectory() : void @@ -256,7 +256,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be copied recursively - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCopyDirectory() : void @@ -270,7 +270,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A directory can be moved/renamed to a different path - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticMoveDirectory() : void @@ -285,7 +285,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned recursively - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCountRecursiveDirectory() : void @@ -296,7 +296,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files in a directory can be returned none-recursively - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCountDirectory() : void @@ -307,7 +307,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of files of a none-existing directory is negative - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticCountDirectory() : void @@ -318,7 +318,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox All files and sub-directories of a directory can be listed - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticListFilesDirectory() : void @@ -329,7 +329,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing directory returns a empty list of files and sub-directories - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidListPathDirectory() : void @@ -339,7 +339,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be copied to a new destination - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidCopyPathDirectory() : void @@ -349,7 +349,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid directory cannot be moved to a new destination - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidMovePathDirectory() : void @@ -359,7 +359,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the creation date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidCreatedPathDirectory() : void @@ -371,7 +371,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidChangedPathDirectory() : void @@ -383,7 +383,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidOwnerPathDirectory() : void @@ -395,7 +395,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file without content can be created - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCreateFile() : void @@ -410,7 +410,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be created if it already exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticCreateFile() : void @@ -425,7 +425,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file with content can be created - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticPutFile() : void @@ -440,7 +440,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be replaced if it doesn't exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticCreateReplaceFile() : void @@ -452,7 +452,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be appended if it doesn't exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticCreateAppendFile() : void @@ -464,7 +464,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be prepended if it doesn't exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticCreatePrependFile() : void @@ -476,7 +476,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be checked for existence - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticExistsFile() : void @@ -487,7 +487,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be replaced with a new one - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticReplaceFile() : void @@ -503,7 +503,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The set alias works like the replace flag - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticSetAliasFile() : void @@ -519,7 +519,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be appended with additional content - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticAppendFile() : void @@ -535,7 +535,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The append alias works like the append flag - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticAppendAliasFile() : void @@ -551,7 +551,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be prepended with additional content - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticPrependFile() : void @@ -567,7 +567,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The prepend alias works like the prepend flag - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticPrependAliasFile() : void @@ -583,7 +583,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The content of a file can be read - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticGetFile() : void @@ -597,7 +597,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The parent directory of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticParentFile() : void @@ -609,7 +609,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The extension of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticExtensionFile() : void @@ -621,7 +621,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The name of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticNameFile() : void @@ -633,7 +633,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The basename of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticBaseNameFile() : void @@ -645,7 +645,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The file name of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticDirnameFile() : void @@ -657,7 +657,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The file path of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticDirectoryPathFile() : void @@ -669,7 +669,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The count of a file is always 1 - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCountFile() : void @@ -681,7 +681,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories creation date can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCreatedAtFile() : void @@ -697,7 +697,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The directories last change date can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticChangedAtFile() : void @@ -713,7 +713,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be deleted - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticDeleteFile() : void @@ -727,7 +727,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be deleted - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticDeleteFile() : void @@ -739,7 +739,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticSizeFile() : void @@ -754,7 +754,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a file can be returned - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticPermissionFile() : void @@ -769,7 +769,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The permission of a none-existing file is negative - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticPermissionFile() : void @@ -780,7 +780,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be copied to a different location - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCopyFile() : void @@ -803,7 +803,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be copied to a different location if the destination already exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticCopyFile() : void @@ -823,7 +823,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be copied to a different location even if the destination already exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticCopyOverwriteFile() : void @@ -843,7 +843,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be moved to a different location - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticMoveFile() : void @@ -865,7 +865,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file cannot be moved to a different location if the destination already exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidStaticMoveFile() : void @@ -886,7 +886,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be forced to be moved to a different location even if the destination already exists - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testStaticMoveOverwriteFile() : void @@ -905,7 +905,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testSanitize() : void @@ -915,7 +915,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The size of a none-existing file is negative - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidSizePathFile() : void @@ -925,7 +925,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be copied - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidCopyPathFile() : void @@ -935,7 +935,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be moved - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidMovePathFile() : void @@ -945,7 +945,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the content of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidGetPathFile() : void @@ -957,7 +957,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the created date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidCreatedPathFile() : void @@ -969,7 +969,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the last change date of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidChangedPathFile() : void @@ -981,7 +981,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the owner of a none-existing file throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidOwnerPathFile() : void @@ -993,7 +993,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Writing data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidPutPath() : void @@ -1005,7 +1005,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading data from a directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidGetPath() : void @@ -1017,7 +1017,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Trying to run list on a file throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidListPath() : void @@ -1029,7 +1029,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Setting data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidSetPath() : void @@ -1041,7 +1041,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Appending data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidAppendPath() : void @@ -1053,7 +1053,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Prepending data to a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidPrependPath() : void @@ -1065,7 +1065,7 @@ final class LocalStorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Reading the extension of a destination which looks like a directory throws a PathException - * @covers phpOMS\System\File\Local\LocalStorage + * @covers \phpOMS\System\File\Local\LocalStorage * @group framework */ public function testInvalidExtensionPath() : void diff --git a/tests/System/File/PathExceptionTest.php b/tests/System/File/PathExceptionTest.php index 0bbc6e203..449cbae62 100755 --- a/tests/System/File/PathExceptionTest.php +++ b/tests/System/File/PathExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\System\File\PathException; final class PathExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\System\File\PathException + * @covers \phpOMS\System\File\PathException * @group framework */ public function testConstructor() : void diff --git a/tests/System/File/PermissionExceptionTest.php b/tests/System/File/PermissionExceptionTest.php index c4e27b819..ef073f932 100755 --- a/tests/System/File/PermissionExceptionTest.php +++ b/tests/System/File/PermissionExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\System\File\PermissionException; final class PermissionExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\System\File\PermissionException + * @covers \phpOMS\System\File\PermissionException * @group framework */ public function testConstructor() : void diff --git a/tests/System/File/StorageTest.php b/tests/System/File/StorageTest.php index 8b8decfe7..e90a83fc7 100755 --- a/tests/System/File/StorageTest.php +++ b/tests/System/File/StorageTest.php @@ -26,7 +26,7 @@ final class StorageTest extends \PHPUnit\Framework\TestCase { /** * @testdox By default the local storage handler is returned - * @covers phpOMS\System\File\Storage + * @covers \phpOMS\System\File\Storage * @group framework */ public function testStorageDefault() : void @@ -36,7 +36,7 @@ final class StorageTest extends \PHPUnit\Framework\TestCase /** * @testdox The pre-defined storage handlers can be returned by their name - * @covers phpOMS\System\File\Storage + * @covers \phpOMS\System\File\Storage * @group framework */ public function testStoragePreDefined() : void @@ -47,7 +47,7 @@ final class StorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Storages can be registered and returned - * @covers phpOMS\System\File\Storage + * @covers \phpOMS\System\File\Storage * @group framework */ public function testInputOutput() : void @@ -60,7 +60,7 @@ final class StorageTest extends \PHPUnit\Framework\TestCase /** * @testdox Registered storage handlers cannot be overwritten - * @covers phpOMS\System\File\Storage + * @covers \phpOMS\System\File\Storage * @group framework */ public function testInvalidRegister() : void @@ -71,7 +71,7 @@ final class StorageTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid or none-existing storage throws a Exception - * @covers phpOMS\System\File\Storage + * @covers \phpOMS\System\File\Storage * @group framework */ public function testInvalidStorage() : void diff --git a/tests/System/MimeTypeTest.php b/tests/System/MimeTypeTest.php index c5cdab4da..2c93b0a31 100755 --- a/tests/System/MimeTypeTest.php +++ b/tests/System/MimeTypeTest.php @@ -44,7 +44,7 @@ final class MimeTypeTest extends \PHPUnit\Framework\TestCase /** * @testdox The mime type enum vales can be retreived by extension - * @covers phpOMS\System\MimeType + * @covers \phpOMS\System\MimeType * @group framework */ public function testExtensionToMime() : void @@ -54,7 +54,7 @@ final class MimeTypeTest extends \PHPUnit\Framework\TestCase /** * @testdox A unknown extension returns application/octet-stream - * @covers phpOMS\System\MimeType + * @covers \phpOMS\System\MimeType * @group framework */ public function testInvalidExtensionToMime() : void diff --git a/tests/System/OperatingSystemTest.php b/tests/System/OperatingSystemTest.php index 67a47950f..0ae4919dd 100755 --- a/tests/System/OperatingSystemTest.php +++ b/tests/System/OperatingSystemTest.php @@ -27,7 +27,7 @@ final class OperatingSystemTest extends \PHPUnit\Framework\TestCase { /** * @testdox The current operating system can be returned - * @covers phpOMS\System\OperatingSystem + * @covers \phpOMS\System\OperatingSystem * @group framework */ public function testSystem() : void diff --git a/tests/System/Search/StringSearchTest.php b/tests/System/Search/StringSearchTest.php index 58404ac25..f152ae60f 100755 --- a/tests/System/Search/StringSearchTest.php +++ b/tests/System/Search/StringSearchTest.php @@ -24,7 +24,7 @@ use phpOMS\System\Search\StringSearch; final class StringSearchTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\System\Search\StringSearch + * @covers \phpOMS\System\Search\StringSearch * @group framework */ public function testKnutMorrisPrattSearch() : void @@ -33,7 +33,7 @@ final class StringSearchTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\Search\StringSearch + * @covers \phpOMS\System\Search\StringSearch * @group framework */ public function testInvalidKnutMorrisPrattSearch() : void @@ -42,7 +42,7 @@ final class StringSearchTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\Search\StringSearch + * @covers \phpOMS\System\Search\StringSearch * @group framework */ public function testBoyerMooreHorspoolSimpleSearch() : void @@ -51,7 +51,7 @@ final class StringSearchTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\Search\StringSearch + * @covers \phpOMS\System\Search\StringSearch * @group framework */ public function testInvalidBoyerMooreHorspoolSimpleSearch() : void @@ -60,7 +60,7 @@ final class StringSearchTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\Search\StringSearch + * @covers \phpOMS\System\Search\StringSearch * @group framework */ public function testBoyerMooreHorspoolSearch() : void @@ -69,7 +69,7 @@ final class StringSearchTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\System\Search\StringSearch + * @covers \phpOMS\System\Search\StringSearch * @group framework */ public function testInvalidBoyerMooreHorspoolSearch() : void diff --git a/tests/System/SystemUtilsTest.php b/tests/System/SystemUtilsTest.php index 61750bee2..5b3aeca7b 100755 --- a/tests/System/SystemUtilsTest.php +++ b/tests/System/SystemUtilsTest.php @@ -27,7 +27,7 @@ final class SystemUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox Test if it is possible to get information about the available RAM and usage - * @covers phpOMS\System\SystemUtils + * @covers \phpOMS\System\SystemUtils * @group framework */ public function testRAM() : void @@ -45,7 +45,7 @@ final class SystemUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Test if it is possible to get information about the CPU usage - * @covers phpOMS\System\SystemUtils + * @covers \phpOMS\System\SystemUtils * @group framework */ public function testCPUUsage() : void diff --git a/tests/UnhandledHandlerTest.php b/tests/UnhandledHandlerTest.php index b8341ae72..12c7ddc1c 100755 --- a/tests/UnhandledHandlerTest.php +++ b/tests/UnhandledHandlerTest.php @@ -22,8 +22,10 @@ use phpOMS\UnhandledHandler; final class UnhandledHandlerTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\UnhandledHandler + * @covers \phpOMS\UnhandledHandler */ + /* + @bug This is no longer possible with PHPUnit >= 8.0 as it stops the tests public function testErrorHandling() : void { \set_exception_handler(['\phpOMS\UnhandledHandler', 'exceptionHandler']); @@ -36,4 +38,5 @@ final class UnhandledHandlerTest extends \PHPUnit\Framework\TestCase self::assertFalse(UnhandledHandler::errorHandler(0, '', '', 0)); } + */ } diff --git a/tests/Uri/ArgumentTest.php b/tests/Uri/ArgumentTest.php index 4ecaf43a8..d1dcd98b5 100755 --- a/tests/Uri/ArgumentTest.php +++ b/tests/Uri/ArgumentTest.php @@ -27,7 +27,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase { /** * @testdox A uri can be validated - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testValidator() : void @@ -41,7 +41,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The argument uri has the expected default values after initialization - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testDefault() : void @@ -62,7 +62,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The path can be parsed correctly from a uri - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testParsePathInputOutput() : void @@ -79,7 +79,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The path can be set and returned - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testPathInputOutput() : void @@ -92,7 +92,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The path offset can be set and returned - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testPathOffsetInputOutput() : void @@ -105,7 +105,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The route can be parsed correctly from a uri - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testRouteInputOutput() : void @@ -117,7 +117,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The query data can be parsed correctly from a uri - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testQueryInputOutput() : void @@ -131,7 +131,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The fragment can be parsed correctly from a uri - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testFragmentInputOutput() : void @@ -146,7 +146,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The uri can be turned into a string - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testStringify() : void @@ -158,7 +158,7 @@ final class ArgumentTest extends \PHPUnit\Framework\TestCase /** * @testdox The root path can be set and returned - * @covers phpOMS\Uri\Argument + * @covers \phpOMS\Uri\Argument * @group framework */ public function testRootPathInputOutput() : void diff --git a/tests/Uri/HttpUriTest.php b/tests/Uri/HttpUriTest.php index 0e8e604cf..9f9fe71c3 100755 --- a/tests/Uri/HttpUriTest.php +++ b/tests/Uri/HttpUriTest.php @@ -27,7 +27,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase { /** * @testdox A url can be validated - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testValidator() : void @@ -40,7 +40,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The http url has the expected default values after initialization - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testDefault() : void @@ -57,7 +57,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The url schema can be parsed correctly from a url and overwritten - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testSchemeInputOutput() : void @@ -72,7 +72,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The port can be parsed correctly from a url and overwritten - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testPortInputOutput() : void @@ -87,7 +87,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The host can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testHostInputOutput() : void @@ -102,7 +102,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The username can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testUsernameInputOutput() : void @@ -117,7 +117,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The password can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testPasswordInputOutput() : void @@ -132,7 +132,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The base can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testBaseInputOutput() : void @@ -144,7 +144,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The url can be turned into a string - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testStringify() : void @@ -156,7 +156,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The authority can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testAuthorityInputOutput() : void @@ -168,7 +168,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The user info can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testUserinfoInputOutput() : void @@ -180,7 +180,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The root path can be set and returned - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testRootPathInputOutput() : void @@ -193,7 +193,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox A path can be overwritten - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testPathInputOutput() : void @@ -206,7 +206,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The path elements can be parsed from a url and overwritten - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testPathElementInputOutput() : void @@ -221,7 +221,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The path offset can be set and returned - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testPathOffsetInputOutput() : void @@ -234,7 +234,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The subdomain can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testSubdmonain() : void @@ -251,7 +251,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The query data can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testQueryData() : void @@ -264,7 +264,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The fragment data can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testFragment() : void @@ -278,7 +278,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The path data can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testPathData() : void @@ -291,7 +291,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox The route can be parsed correctly from a url - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testRouteInputOutput() : void @@ -302,7 +302,7 @@ final class HttpUriTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid uri cannot get parsed - * @covers phpOMS\Uri\HttpUri + * @covers \phpOMS\Uri\HttpUri * @group framework */ public function testInvalidUri() : void diff --git a/tests/Uri/InvalidUriExceptionTest.php b/tests/Uri/InvalidUriExceptionTest.php index fe0e89b88..90b717b78 100755 --- a/tests/Uri/InvalidUriExceptionTest.php +++ b/tests/Uri/InvalidUriExceptionTest.php @@ -26,7 +26,7 @@ final class InvalidUriExceptionTest extends \PHPUnit\Framework\TestCase { /** * @testdox The invalid uri exception is an unexpected value exception - * @covers phpOMS\Uri\InvalidUriException + * @covers \phpOMS\Uri\InvalidUriException * @group framework */ public function testException() : void diff --git a/tests/Uri/UriFactoryTest.php b/tests/Uri/UriFactoryTest.php index b0f95fb28..d9556b1a7 100755 --- a/tests/Uri/UriFactoryTest.php +++ b/tests/Uri/UriFactoryTest.php @@ -28,7 +28,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase { /** * @testdox The http url factory has the expected default values after initialization - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testDefault() : void @@ -39,7 +39,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be set to the factory and returned - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testQueryInputOutput() : void @@ -50,7 +50,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be forcefully overwritten - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testOverwrite() : void @@ -62,7 +62,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox By default data is not overwritten in the factory - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testInvalidOverwrite() : void @@ -74,7 +74,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be removed/cleared from the factory - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testClearing() : void @@ -86,7 +86,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing data cannot be cleared from the factory - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testInvalidClearing() : void @@ -98,7 +98,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be removed from the factory by category - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testClean() : void @@ -112,7 +112,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox All data can be removed from the factory with a wildcard - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testCleanWildcard() : void @@ -126,7 +126,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be removed from the factory with regular expression matches - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testClearingLike() : void @@ -143,7 +143,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox Data which doesn't match the regular expression is not removed - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testInvalidClearingLike() : void @@ -156,7 +156,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A url can be build with the defined factory data and/or build specific data - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testBuilder() : void @@ -179,7 +179,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The uri factory can be set up with default values from a url and build with these default values - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testSetupBuild() : void @@ -196,7 +196,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox In case of duplicated query elements the last element is used - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testDuplicatedQueryElements() : void @@ -211,7 +211,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox The uri variables can be unescaped - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testVariableUnescape() : void @@ -227,7 +227,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox In case of missing ? for query the builder automatically fixes it - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testMissingQueryIdentifier() : void @@ -241,7 +241,7 @@ final class UriFactoryTest extends \PHPUnit\Framework\TestCase /** * @testdox A normal url will not be changed - * @covers phpOMS\Uri\UriFactory + * @covers \phpOMS\Uri\UriFactory * @group framework */ public function testNormalUrlParsing() : void diff --git a/tests/Utils/ArrayUtilsTest.php b/tests/Utils/ArrayUtilsTest.php index e6298b35b..4a8229865 100755 --- a/tests/Utils/ArrayUtilsTest.php +++ b/tests/Utils/ArrayUtilsTest.php @@ -27,7 +27,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox Array values can be set and returned with a path - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayInputOutput() : void @@ -63,7 +63,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid array path returns null - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayInvalidArrayPath() : void @@ -89,7 +89,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Test recursively if a value is in an array - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayInRecursive() : void @@ -113,7 +113,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox An array element can be removed by its path - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayDelete() : void @@ -134,7 +134,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Deleting an invalid array path returns the original array - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testInvalidArrayDelete() : void @@ -155,7 +155,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The recursive sum of all values in an array can be calculated - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayRecursiveSum() : void @@ -166,7 +166,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-dimensional array can be flatten to a one-dimensional array - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayFlatten() : void @@ -178,7 +178,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The sum of an array can be calculated - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArraySum() : void @@ -191,7 +191,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox An array can be checked if it contains multiple defined elements - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayAllIn() : void @@ -205,7 +205,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox An array can be checked if it contains any of the defined elements - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayAnyIn() : void @@ -217,7 +217,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox An array can be turned into a csv string - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayToCsv() : void @@ -237,7 +237,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox An array can be checked if it has an element and returns its index - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArgHas() : void @@ -249,7 +249,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing argument in an array returns a negative value - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testInvalidArgHas() : void @@ -259,7 +259,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The argument value in an array can be returned - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArgGet() : void @@ -271,7 +271,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing argument in an array returns null - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testInvalidArgGet() : void @@ -281,7 +281,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox All array values in an array can be potentiated by a numeric value - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * * @group framework */ @@ -296,7 +296,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox All array values in an array can be square rooted - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testSqrt() : void @@ -306,7 +306,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox All array values in an array can be turned into their absolute value - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testAbs() : void @@ -316,7 +316,7 @@ final class ArrayUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The difference of two arrays can be evaluated recursively - * @covers phpOMS\Utils\ArrayUtils + * @covers \phpOMS\Utils\ArrayUtils * @group framework */ public function testArrayDiffAssocResursive() : void diff --git a/tests/Utils/Barcode/BarAbstractTest.php b/tests/Utils/Barcode/BarAbstractTest.php index 7851e91a3..1235e8deb 100755 --- a/tests/Utils/Barcode/BarAbstractTest.php +++ b/tests/Utils/Barcode/BarAbstractTest.php @@ -32,7 +32,7 @@ final class BarAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\CodeAbstract + * @covers \phpOMS\Utils\Barcode\CodeAbstract * @group framework */ public function testSetGet() : void @@ -42,7 +42,7 @@ final class BarAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\CodeAbstract + * @covers \phpOMS\Utils\Barcode\CodeAbstract * @group framework */ public function testInvalidDimensionWidth() : void @@ -53,7 +53,7 @@ final class BarAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\CodeAbstract + * @covers \phpOMS\Utils\Barcode\CodeAbstract * @group framework */ public function testInvalidDimensionHeight() : void @@ -64,7 +64,7 @@ final class BarAbstractTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\CodeAbstract + * @covers \phpOMS\Utils\Barcode\CodeAbstract * @group framework */ public function testInvalidOrientation() : void diff --git a/tests/Utils/Barcode/C128aTest.php b/tests/Utils/Barcode/C128aTest.php index 7e605d4a3..61ed481aa 100755 --- a/tests/Utils/Barcode/C128aTest.php +++ b/tests/Utils/Barcode/C128aTest.php @@ -32,7 +32,7 @@ final class C128aTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128a + * @covers \phpOMS\Utils\Barcode\C128a * @group framework */ public function testImagePng() : void @@ -49,7 +49,7 @@ final class C128aTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128a + * @covers \phpOMS\Utils\Barcode\C128a * @group framework */ public function testImageJpg() : void @@ -66,7 +66,7 @@ final class C128aTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128a + * @covers \phpOMS\Utils\Barcode\C128a * @group framework */ public function testOrientationAndMargin() : void @@ -84,7 +84,7 @@ final class C128aTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128a + * @covers \phpOMS\Utils\Barcode\C128a * @group framework */ public function testValidString() : void diff --git a/tests/Utils/Barcode/C128bTest.php b/tests/Utils/Barcode/C128bTest.php index ad331460a..f7f878fea 100755 --- a/tests/Utils/Barcode/C128bTest.php +++ b/tests/Utils/Barcode/C128bTest.php @@ -32,7 +32,7 @@ final class C128bTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128b + * @covers \phpOMS\Utils\Barcode\C128b * @group framework */ public function testImagePng() : void @@ -49,7 +49,7 @@ final class C128bTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128b + * @covers \phpOMS\Utils\Barcode\C128b * @group framework */ public function testImageJpg() : void @@ -66,7 +66,7 @@ final class C128bTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128b + * @covers \phpOMS\Utils\Barcode\C128b * @group framework */ public function testOrientationAndMargin() : void @@ -84,7 +84,7 @@ final class C128bTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128b + * @covers \phpOMS\Utils\Barcode\C128b * @group framework */ public function testValidString() : void diff --git a/tests/Utils/Barcode/C128cTest.php b/tests/Utils/Barcode/C128cTest.php index f2f0cfc26..16ae98dde 100755 --- a/tests/Utils/Barcode/C128cTest.php +++ b/tests/Utils/Barcode/C128cTest.php @@ -32,7 +32,7 @@ final class C128cTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128c + * @covers \phpOMS\Utils\Barcode\C128c * @group framework */ public function testImagePng() : void @@ -49,7 +49,7 @@ final class C128cTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128c + * @covers \phpOMS\Utils\Barcode\C128c * @group framework */ public function testImageJpg() : void @@ -66,7 +66,7 @@ final class C128cTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C128c + * @covers \phpOMS\Utils\Barcode\C128c * @group framework */ public function testOrientationAndMargin() : void diff --git a/tests/Utils/Barcode/C25Test.php b/tests/Utils/Barcode/C25Test.php index 54c280d62..98cf8813f 100755 --- a/tests/Utils/Barcode/C25Test.php +++ b/tests/Utils/Barcode/C25Test.php @@ -32,7 +32,7 @@ final class C25Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C25 + * @covers \phpOMS\Utils\Barcode\C25 * @group framework */ public function testImagePng() : void @@ -49,7 +49,7 @@ final class C25Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C25 + * @covers \phpOMS\Utils\Barcode\C25 * @group framework */ public function testImageJpg() : void @@ -66,7 +66,7 @@ final class C25Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C25 + * @covers \phpOMS\Utils\Barcode\C25 * @group framework */ public function testOrientationAndMargin() : void @@ -84,7 +84,7 @@ final class C25Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C25 + * @covers \phpOMS\Utils\Barcode\C25 * @group framework */ public function testValidString() : void @@ -94,7 +94,7 @@ final class C25Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C25 + * @covers \phpOMS\Utils\Barcode\C25 * @group framework */ public function testInvalidOrientation() : void diff --git a/tests/Utils/Barcode/C39Test.php b/tests/Utils/Barcode/C39Test.php index 35b520ccb..3e56d7820 100755 --- a/tests/Utils/Barcode/C39Test.php +++ b/tests/Utils/Barcode/C39Test.php @@ -32,7 +32,7 @@ final class C39Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C39 + * @covers \phpOMS\Utils\Barcode\C39 * @group framework */ public function testImagePng() : void @@ -49,7 +49,7 @@ final class C39Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C39 + * @covers \phpOMS\Utils\Barcode\C39 * @group framework */ public function testImageJpg() : void @@ -66,7 +66,7 @@ final class C39Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C39 + * @covers \phpOMS\Utils\Barcode\C39 * @group framework */ public function testOrientationAndMargin() : void @@ -84,7 +84,7 @@ final class C39Test extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\C39 + * @covers \phpOMS\Utils\Barcode\C39 * @group framework */ public function testValidString() : void diff --git a/tests/Utils/Barcode/CodebarTest.php b/tests/Utils/Barcode/CodebarTest.php index 8cbe0830c..44ac8c4ff 100755 --- a/tests/Utils/Barcode/CodebarTest.php +++ b/tests/Utils/Barcode/CodebarTest.php @@ -32,7 +32,7 @@ final class CodebarTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\Codebar + * @covers \phpOMS\Utils\Barcode\Codebar * @group framework */ public function testImagePng() : void @@ -49,7 +49,7 @@ final class CodebarTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\Codebar + * @covers \phpOMS\Utils\Barcode\Codebar * @group framework */ public function testImageJpg() : void @@ -66,7 +66,7 @@ final class CodebarTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\Codebar + * @covers \phpOMS\Utils\Barcode\Codebar * @group framework */ public function testOrientationAndMargin() : void @@ -84,7 +84,7 @@ final class CodebarTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\Codebar + * @covers \phpOMS\Utils\Barcode\Codebar * @group framework */ public function testValidString() : void diff --git a/tests/Utils/Barcode/DatamatrixTest.php b/tests/Utils/Barcode/DatamatrixTest.php index f133c1f6a..40d1acf0d 100755 --- a/tests/Utils/Barcode/DatamatrixTest.php +++ b/tests/Utils/Barcode/DatamatrixTest.php @@ -31,7 +31,7 @@ final class DatamatrixTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\Datamatrix + * @covers \phpOMS\Utils\Barcode\Datamatrix * @group framework */ public function testImagePng() : void @@ -48,7 +48,7 @@ final class DatamatrixTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\Datamatrix + * @covers \phpOMS\Utils\Barcode\Datamatrix * @group framework */ public function testImageJpg() : void diff --git a/tests/Utils/Barcode/QRTest.php b/tests/Utils/Barcode/QRTest.php index 9e6ac628d..d3bce1fb6 100755 --- a/tests/Utils/Barcode/QRTest.php +++ b/tests/Utils/Barcode/QRTest.php @@ -31,7 +31,7 @@ final class QRTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\QR + * @covers \phpOMS\Utils\Barcode\QR * @group framework */ public function testImagePng() : void @@ -48,7 +48,7 @@ final class QRTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\Barcode\QR + * @covers \phpOMS\Utils\Barcode\QR * @group framework */ public function testImageJpg() : void diff --git a/tests/Utils/Barcode/datamatrix.jpg b/tests/Utils/Barcode/datamatrix.jpg index 506195b73..154345e94 100644 Binary files a/tests/Utils/Barcode/datamatrix.jpg and b/tests/Utils/Barcode/datamatrix.jpg differ diff --git a/tests/Utils/Barcode/datamatrix.png b/tests/Utils/Barcode/datamatrix.png index 8d7bd896e..138094f92 100644 Binary files a/tests/Utils/Barcode/datamatrix.png and b/tests/Utils/Barcode/datamatrix.png differ diff --git a/tests/Utils/ColorUtilsTest.php b/tests/Utils/ColorUtilsTest.php index 2247c495d..e50082822 100755 --- a/tests/Utils/ColorUtilsTest.php +++ b/tests/Utils/ColorUtilsTest.php @@ -27,7 +27,7 @@ final class ColorUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox A integer can be converted to rgb - * @covers phpOMS\Utils\ColorUtils + * @covers \phpOMS\Utils\ColorUtils * @group framework */ public function testIntToRgb() : void @@ -37,7 +37,7 @@ final class ColorUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Rgb can be converted to a integer - * @covers phpOMS\Utils\ColorUtils + * @covers \phpOMS\Utils\ColorUtils * @group framework */ public function testRgbToInt() : void diff --git a/tests/Utils/Compression/LZWTest.php b/tests/Utils/Compression/LZWTest.php index d2dd953a7..945949959 100755 --- a/tests/Utils/Compression/LZWTest.php +++ b/tests/Utils/Compression/LZWTest.php @@ -25,7 +25,7 @@ final class LZWTest extends \PHPUnit\Framework\TestCase { /** * @testdox A string can be LZW compressed and uncompressed - * @covers phpOMS\Utils\Compression\LZW + * @covers \phpOMS\Utils\Compression\LZW * @group framework */ public function testLZW() : void diff --git a/tests/Utils/Converter/CurrencyTest.php b/tests/Utils/Converter/CurrencyTest.php index f43b662a7..2480db101 100755 --- a/tests/Utils/Converter/CurrencyTest.php +++ b/tests/Utils/Converter/CurrencyTest.php @@ -56,7 +56,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase /** * @testdox A currency can be converted from euro to another currency - * @covers phpOMS\Utils\Converter\Currency + * @covers \phpOMS\Utils\Converter\Currency * @group framework */ public function testCurrencyFromEur() : void @@ -66,7 +66,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase /** * @testdox A currency can be converted to euro from another currency - * @covers phpOMS\Utils\Converter\Currency + * @covers \phpOMS\Utils\Converter\Currency * @group framework */ public function testCurrencyToEur() : void @@ -76,7 +76,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase /** * @testdox A currency can be converted from one currency to another currency - * @covers phpOMS\Utils\Converter\Currency + * @covers \phpOMS\Utils\Converter\Currency * @group framework */ public function testCurrency() : void @@ -87,7 +87,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase /** * @testdox A currency conversion from eur to a invalid currency throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Currency + * @covers \phpOMS\Utils\Converter\Currency * @group framework */ public function testInvalidFromEur() : void @@ -97,7 +97,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase /** * @testdox A currency conversion from a invalid currency to eur throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Currency + * @covers \phpOMS\Utils\Converter\Currency * @group framework */ public function testInvalidToEur() : void @@ -107,7 +107,7 @@ final class CurrencyTest extends \PHPUnit\Framework\TestCase /** * @testdox A currency conversion from a invalid currency to a invalid currency throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Currency + * @covers \phpOMS\Utils\Converter\Currency * @group framework */ public function testInvalidConvert() : void diff --git a/tests/Utils/Converter/FileSizeTypeTest.php b/tests/Utils/Converter/FileSizeTypeTest.php index be341a410..640ceb584 100755 --- a/tests/Utils/Converter/FileSizeTypeTest.php +++ b/tests/Utils/Converter/FileSizeTypeTest.php @@ -61,7 +61,7 @@ final class FileSizeTypeTest extends \PHPUnit\Framework\TestCase /** * @testdox File sizes can get automatically formatted according to their size - * @covers phpOMS\Utils\Converter\FileSizeType + * @covers \phpOMS\Utils\Converter\FileSizeType * @group framework */ public function testAutoFormat() : void diff --git a/tests/Utils/Converter/FileTest.php b/tests/Utils/Converter/FileTest.php index 23670377d..0242c8a00 100755 --- a/tests/Utils/Converter/FileTest.php +++ b/tests/Utils/Converter/FileTest.php @@ -25,7 +25,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase { /** * @testdox A byte number can be converted to a string representation - * @covers phpOMS\Utils\Converter\File + * @covers \phpOMS\Utils\Converter\File * @group framework */ public function testByteSizeToString() : void @@ -38,7 +38,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase /** * @testdox A kilobyte number can be converted to a string representation - * @covers phpOMS\Utils\Converter\File + * @covers \phpOMS\Utils\Converter\File * @group framework */ public function testKilobyteSizeToString() : void diff --git a/tests/Utils/Converter/IpTest.php b/tests/Utils/Converter/IpTest.php index 020f7ce1e..5220e7f66 100755 --- a/tests/Utils/Converter/IpTest.php +++ b/tests/Utils/Converter/IpTest.php @@ -25,7 +25,7 @@ final class IpTest extends \PHPUnit\Framework\TestCase { /** * @testdox An ip can be converted to a float - * @covers phpOMS\Utils\Converter\Ip + * @covers \phpOMS\Utils\Converter\Ip * @group framework */ public function testIp() : void diff --git a/tests/Utils/Converter/MeasurementTest.php b/tests/Utils/Converter/MeasurementTest.php index 5b49243cf..9451c57f3 100755 --- a/tests/Utils/Converter/MeasurementTest.php +++ b/tests/Utils/Converter/MeasurementTest.php @@ -36,7 +36,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase { /** * @testdox Temperatures can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testTemperature() : void @@ -57,7 +57,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Weights can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testWeight() : void @@ -78,7 +78,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Lengths can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testLength() : void @@ -99,7 +99,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Areas can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testArea() : void @@ -120,7 +120,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Volumes can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testVolume() : void @@ -141,7 +141,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Speeds can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testSpeed() : void @@ -162,7 +162,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Times can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testTime() : void @@ -183,7 +183,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Angles can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testAngle() : void @@ -204,7 +204,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Pressures can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testPressure() : void @@ -225,7 +225,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Energies can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testEnergy() : void @@ -246,7 +246,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox File sizes can be converted - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testFileSize() : void @@ -267,7 +267,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown temperature throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidTemperatureFrom() : void @@ -279,7 +279,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown temperature throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidTemperatureTo() : void @@ -291,7 +291,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown weight throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidWeightFrom() : void @@ -303,7 +303,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown weight throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidWeightTo() : void @@ -315,7 +315,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown length throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidLengthFrom() : void @@ -327,7 +327,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown length throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidLengthTo() : void @@ -339,7 +339,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown area throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidAreaFrom() : void @@ -351,7 +351,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown area throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidAreaTo() : void @@ -363,7 +363,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown volume throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidVolumeFrom() : void @@ -375,7 +375,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown volume throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidVolumeTo() : void @@ -387,7 +387,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown speed throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidSpeedFrom() : void @@ -399,7 +399,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown speed throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidSpeedTo() : void @@ -411,7 +411,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown time throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidTimeFrom() : void @@ -423,7 +423,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown time throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidTimeTo() : void @@ -435,7 +435,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown angle throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidAngleFrom() : void @@ -447,7 +447,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown angle throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidAngleTo() : void @@ -459,7 +459,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown pressure throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidPressureFrom() : void @@ -471,7 +471,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown pressure throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidPressureTo() : void @@ -483,7 +483,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown energy throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidEnergyPowerFrom() : void @@ -495,7 +495,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown energy throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidEnergyPowerTo() : void @@ -507,7 +507,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion from unknown filesize throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidFileSizeFrom() : void @@ -519,7 +519,7 @@ final class MeasurementTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid conversion to unknown filesize throws a InvalidArgumentException - * @covers phpOMS\Utils\Converter\Measurement + * @covers \phpOMS\Utils\Converter\Measurement * @group framework */ public function testInvalidFileSizeTo() : void diff --git a/tests/Utils/Converter/NumericTest.php b/tests/Utils/Converter/NumericTest.php index 0d56f5410..16285cf3d 100755 --- a/tests/Utils/Converter/NumericTest.php +++ b/tests/Utils/Converter/NumericTest.php @@ -25,7 +25,7 @@ final class NumericTest extends \PHPUnit\Framework\TestCase { /** * @testdox Arabic numbers can be converted to roman numbers - * @covers phpOMS\Utils\Converter\Numeric + * @covers \phpOMS\Utils\Converter\Numeric * @group framework */ public function testArabicToRoman() : void @@ -41,7 +41,7 @@ final class NumericTest extends \PHPUnit\Framework\TestCase /** * @testdox Roman numbers can be converted to arabic numbers - * @covers phpOMS\Utils\Converter\Numeric + * @covers \phpOMS\Utils\Converter\Numeric * @group framework */ public function testRomanToArabic() : void @@ -54,7 +54,7 @@ final class NumericTest extends \PHPUnit\Framework\TestCase /** * @testdox Letters can be converted to numbers - * @covers phpOMS\Utils\Converter\Numeric + * @covers \phpOMS\Utils\Converter\Numeric * @group framework */ public function testAlphaToNumeric() : void @@ -66,7 +66,7 @@ final class NumericTest extends \PHPUnit\Framework\TestCase /** * @testdox Numbers can be converted to letters - * @covers phpOMS\Utils\Converter\Numeric + * @covers \phpOMS\Utils\Converter\Numeric * @group framework */ public function testNumericToAlpha() : void @@ -78,7 +78,7 @@ final class NumericTest extends \PHPUnit\Framework\TestCase /** * @testdox Numbers can be converted between bases - * @covers phpOMS\Utils\Converter\Numeric + * @covers \phpOMS\Utils\Converter\Numeric * @group framework */ public function testBase() : void diff --git a/tests/Utils/Encoding/CaesarTest.php b/tests/Utils/Encoding/CaesarTest.php index 93116c09e..b932ffa8e 100755 --- a/tests/Utils/Encoding/CaesarTest.php +++ b/tests/Utils/Encoding/CaesarTest.php @@ -25,7 +25,7 @@ final class CaesarTest extends \PHPUnit\Framework\TestCase { /** * @testdox Text can be encoded and decoded with the ceasar encoding - * @covers phpOMS\Utils\Encoding\Caesar + * @covers \phpOMS\Utils\Encoding\Caesar * @group framework */ public function testEncoding() : void diff --git a/tests/Utils/Encoding/GrayTest.php b/tests/Utils/Encoding/GrayTest.php index 537c77c2e..3eceb83ea 100755 --- a/tests/Utils/Encoding/GrayTest.php +++ b/tests/Utils/Encoding/GrayTest.php @@ -25,7 +25,7 @@ final class GrayTest extends \PHPUnit\Framework\TestCase { /** * @testdox Text can be encoded and decoded with the gray encoding - * @covers phpOMS\Utils\Encoding\Gray + * @covers \phpOMS\Utils\Encoding\Gray * @group framework */ public function testEncoding() : void diff --git a/tests/Utils/Encoding/Huffman/DictionaryTest.php b/tests/Utils/Encoding/Huffman/DictionaryTest.php index c2e8a0ffc..196d2bad9 100755 --- a/tests/Utils/Encoding/Huffman/DictionaryTest.php +++ b/tests/Utils/Encoding/Huffman/DictionaryTest.php @@ -25,7 +25,7 @@ final class DictionaryTest extends \PHPUnit\Framework\TestCase { /** * @testdox Only single characters can be returned from the dictionary. Multiple characters throw a InvalidArgumentException - * @covers phpOMS\Utils\Encoding\Huffman\Dictionary + * @covers \phpOMS\Utils\Encoding\Huffman\Dictionary * @group framework */ public function testInvalidGetCharacter() : void @@ -38,7 +38,7 @@ final class DictionaryTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing character throws a InvalidArgumentException - * @covers phpOMS\Utils\Encoding\Huffman\Dictionary + * @covers \phpOMS\Utils\Encoding\Huffman\Dictionary * @group framework */ public function testNotExistingGetCharacter() : void @@ -51,7 +51,7 @@ final class DictionaryTest extends \PHPUnit\Framework\TestCase /** * @testdox Only single characters can be set in the dictionary. Multiple characters throw a InvalidArgumentException - * @covers phpOMS\Utils\Encoding\Huffman\Dictionary + * @covers \phpOMS\Utils\Encoding\Huffman\Dictionary * @group framework */ public function testInvalidSetCharacter() : void @@ -64,7 +64,7 @@ final class DictionaryTest extends \PHPUnit\Framework\TestCase /** * @testdox Dictionary elements cannot be overwritten and throw a InvalidArgumentException - * @covers phpOMS\Utils\Encoding\Huffman\Dictionary + * @covers \phpOMS\Utils\Encoding\Huffman\Dictionary * @group framework */ public function testInvalidSetDuplicateCharacter() : void @@ -78,7 +78,7 @@ final class DictionaryTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid dictionary values throw a InvalidArgumentException - * @covers phpOMS\Utils\Encoding\Huffman\Dictionary + * @covers \phpOMS\Utils\Encoding\Huffman\Dictionary * @group framework */ public function testInvalidFormattedValue() : void diff --git a/tests/Utils/Encoding/XorEncodingTest.php b/tests/Utils/Encoding/XorEncodingTest.php index 0341d36b4..4ecaf20dc 100755 --- a/tests/Utils/Encoding/XorEncodingTest.php +++ b/tests/Utils/Encoding/XorEncodingTest.php @@ -25,7 +25,7 @@ final class XorEncodingTest extends \PHPUnit\Framework\TestCase { /** * @testdox Text can be encoded and decoded with the xor encoding - * @covers phpOMS\Utils\Encoding\XorEncoding + * @covers \phpOMS\Utils\Encoding\XorEncoding * @group framework */ public function testEncoding() : void diff --git a/tests/Utils/Git/AuthorTest.php b/tests/Utils/Git/AuthorTest.php index d8aa0ed3f..b2d832c98 100755 --- a/tests/Utils/Git/AuthorTest.php +++ b/tests/Utils/Git/AuthorTest.php @@ -25,7 +25,7 @@ final class AuthorTest extends \PHPUnit\Framework\TestCase { /** * @testdox The author has the expected default values after initialization - * @covers phpOMS\Utils\Git\Author + * @covers \phpOMS\Utils\Git\Author * @group framework */ public function testDefault() : void @@ -40,7 +40,7 @@ final class AuthorTest extends \PHPUnit\Framework\TestCase /** * @testdox The author name and email can be set during initialization and returned - * @covers phpOMS\Utils\Git\Author + * @covers \phpOMS\Utils\Git\Author * @group framework */ public function testConstructInputOutput() : void @@ -52,7 +52,7 @@ final class AuthorTest extends \PHPUnit\Framework\TestCase /** * @testdox The commit count can be set and returned - * @covers phpOMS\Utils\Git\Author + * @covers \phpOMS\Utils\Git\Author * @group framework */ public function testCommitCountInputOutput() : void @@ -65,7 +65,7 @@ final class AuthorTest extends \PHPUnit\Framework\TestCase /** * @testdox The addition count can be set and returned - * @covers phpOMS\Utils\Git\Author + * @covers \phpOMS\Utils\Git\Author * @group framework */ public function testAdditionCountInputOutput() : void @@ -78,7 +78,7 @@ final class AuthorTest extends \PHPUnit\Framework\TestCase /** * @testdox The removal count can be set and returned - * @covers phpOMS\Utils\Git\Author + * @covers \phpOMS\Utils\Git\Author * @group framework */ public function testRemovalCountInputOutput() : void diff --git a/tests/Utils/Git/BranchTest.php b/tests/Utils/Git/BranchTest.php index 64df618e0..6cf498dc1 100755 --- a/tests/Utils/Git/BranchTest.php +++ b/tests/Utils/Git/BranchTest.php @@ -25,7 +25,7 @@ final class BranchTest extends \PHPUnit\Framework\TestCase { /** * @testdox The branch has the expected default values after initialization - * @covers phpOMS\Utils\Git\Branch + * @covers \phpOMS\Utils\Git\Branch * @group framework */ public function testDefault() : void @@ -36,7 +36,7 @@ final class BranchTest extends \PHPUnit\Framework\TestCase /** * @testdox The branch name can be set during initialization and returned - * @covers phpOMS\Utils\Git\Branch + * @covers \phpOMS\Utils\Git\Branch * @group framework */ public function testConstructInputOutput() : void diff --git a/tests/Utils/Git/CommitTest.php b/tests/Utils/Git/CommitTest.php index d17cfb4e7..37b7fa388 100755 --- a/tests/Utils/Git/CommitTest.php +++ b/tests/Utils/Git/CommitTest.php @@ -29,7 +29,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase { /** * @testdox The commit has the expected default values after initialization - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testDefault() : void @@ -47,7 +47,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be added and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testFileInputOutput() : void @@ -64,7 +64,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can only be added one time - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testInvalidOverwrite() : void @@ -77,7 +77,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox A file can be removed - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testRemoveFile() : void @@ -95,7 +95,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing file cannot be removed - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testInvalidRemoveFile() : void @@ -107,7 +107,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox A change can be added and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testChangeInputOutput() : void @@ -128,7 +128,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox Adding the same change throws a Exception - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testDuplicateLineChange() : void @@ -142,7 +142,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox A commit message can be set and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testMessageInputOutput() : void @@ -155,7 +155,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox The author can be set and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testAuthorInputOutput() : void @@ -168,7 +168,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox The branch can be set and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testBranchInputOutput() : void @@ -181,7 +181,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox The tag can be set and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testTagInputOutput() : void @@ -194,7 +194,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox The date can be set and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testDateInputOutput() : void @@ -207,7 +207,7 @@ final class CommitTest extends \PHPUnit\Framework\TestCase /** * @testdox The repository can be set and returned - * @covers phpOMS\Utils\Git\Commit + * @covers \phpOMS\Utils\Git\Commit * @group framework */ public function testRepositoryInputOutput() : void diff --git a/tests/Utils/Git/GitTest.php b/tests/Utils/Git/GitTest.php index 2e3b7518b..667ababb3 100755 --- a/tests/Utils/Git/GitTest.php +++ b/tests/Utils/Git/GitTest.php @@ -25,7 +25,7 @@ final class GitTest extends \PHPUnit\Framework\TestCase { /** * @testdox The git path can be returned - * @covers phpOMS\Utils\Git\Git + * @covers \phpOMS\Utils\Git\Git * @group framework */ public function testBinary() : void diff --git a/tests/Utils/Git/RepositoryTest.php b/tests/Utils/Git/RepositoryTest.php index ea4f1963b..557bd9a62 100755 --- a/tests/Utils/Git/RepositoryTest.php +++ b/tests/Utils/Git/RepositoryTest.php @@ -25,7 +25,7 @@ final class RepositoryTest extends \PHPUnit\Framework\TestCase { /** * @testdox The repository has the expected default values after initialization - * @covers phpOMS\Utils\Git\Repository + * @covers \phpOMS\Utils\Git\Repository * @group framework */ public function testDefault() : void diff --git a/tests/Utils/Git/TagTest.php b/tests/Utils/Git/TagTest.php index 943136861..57be3bb87 100755 --- a/tests/Utils/Git/TagTest.php +++ b/tests/Utils/Git/TagTest.php @@ -25,7 +25,7 @@ final class TagTest extends \PHPUnit\Framework\TestCase { /** * @testdox The tag has the expected default values after initialization - * @covers phpOMS\Utils\Git\Tag + * @covers \phpOMS\Utils\Git\Tag * @group framework */ public function testDefault() : void @@ -37,7 +37,7 @@ final class TagTest extends \PHPUnit\Framework\TestCase /** * @testdox The tag name can be set during initialization and returned - * @covers phpOMS\Utils\Git\Tag + * @covers \phpOMS\Utils\Git\Tag * @group framework */ public function testConstructorInputOutput() : void @@ -48,7 +48,7 @@ final class TagTest extends \PHPUnit\Framework\TestCase /** * @testdox The message can be set and returned - * @covers phpOMS\Utils\Git\Tag + * @covers \phpOMS\Utils\Git\Tag * @group framework */ public function testMessageInputOutput() : void diff --git a/tests/Utils/IO/Csv/CsvSettingsTest.php b/tests/Utils/IO/Csv/CsvSettingsTest.php index 7b3ef1b7c..f880a59ad 100755 --- a/tests/Utils/IO/Csv/CsvSettingsTest.php +++ b/tests/Utils/IO/Csv/CsvSettingsTest.php @@ -25,7 +25,7 @@ final class CsvSettingsTest extends \PHPUnit\Framework\TestCase { /** * @testdox The delimiter in a csv file can be guessed - * @covers phpOMS\Utils\IO\Csv\CsvSettings + * @covers \phpOMS\Utils\IO\Csv\CsvSettings * @group framework */ public function testFileDelimiter() : void @@ -38,7 +38,7 @@ final class CsvSettingsTest extends \PHPUnit\Framework\TestCase /** * @testdox The delimiter in a csv string can be guessed - * @covers phpOMS\Utils\IO\Csv\CsvSettings + * @covers \phpOMS\Utils\IO\Csv\CsvSettings * @group framework */ public function testStringDelimiter() : void diff --git a/tests/Utils/IO/Json/InvalidJsonExceptionTest.php b/tests/Utils/IO/Json/InvalidJsonExceptionTest.php index d3c580b7c..9c59cf631 100755 --- a/tests/Utils/IO/Json/InvalidJsonExceptionTest.php +++ b/tests/Utils/IO/Json/InvalidJsonExceptionTest.php @@ -22,7 +22,7 @@ use phpOMS\Utils\IO\Json\InvalidJsonException; final class InvalidJsonExceptionTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Utils\IO\Json\InvalidJsonException + * @covers \phpOMS\Utils\IO\Json\InvalidJsonException * @group framework */ public function testException() : void diff --git a/tests/Utils/IO/Spreadsheet/SpreadsheetDatabaseMapperTest.php b/tests/Utils/IO/Spreadsheet/SpreadsheetDatabaseMapperTest.php index ceb645d00..8223bb9aa 100755 --- a/tests/Utils/IO/Spreadsheet/SpreadsheetDatabaseMapperTest.php +++ b/tests/Utils/IO/Spreadsheet/SpreadsheetDatabaseMapperTest.php @@ -70,7 +70,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be inserted into a database from an ods files - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper * @group framework */ public function testInsertOds() : void @@ -105,7 +105,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be inserted into a database from a xls files - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::insert + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::insert * @group framework */ public function testInsertXls() : void @@ -140,7 +140,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be inserted into a database from a xlsx files - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::insert + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::insert * @group framework */ public function testInsertXlsx() : void @@ -175,7 +175,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be updated in a database from an ods files - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::update + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::update * @group framework */ public function testUpdateOds() : void @@ -237,7 +237,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be updated in a database from a xls files - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::update + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::update * @group framework */ public function testUpdateXls() : void @@ -299,7 +299,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be updated in a database from a xlsx files - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::update + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::update * @group framework */ public function testUpdateXlsx() : void @@ -361,7 +361,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be inserted into an ods files from a database - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::select + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::select * @group framework */ public function testSelectOds() : void @@ -413,7 +413,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be inserted into a xls files from a database - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::select + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::select * @group framework */ public function testSelectXls() : void @@ -465,7 +465,7 @@ final class SpreadsheetDatabaseMapperTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be inserted into a xlsx files from a database - * @covers phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::select + * @covers \phpOMS\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapper::select * @group framework */ public function testSelectXlsx() : void diff --git a/tests/Utils/IO/Zip/GzTest.php b/tests/Utils/IO/Zip/GzTest.php index 94c56f54b..2afde6ec5 100755 --- a/tests/Utils/IO/Zip/GzTest.php +++ b/tests/Utils/IO/Zip/GzTest.php @@ -25,7 +25,7 @@ final class GzTest extends \PHPUnit\Framework\TestCase { /** * @testdox Data can be gz packed and unpacked - * @covers phpOMS\Utils\IO\Zip\Gz + * @covers \phpOMS\Utils\IO\Zip\Gz * @group framework */ public function testGz() : void @@ -51,7 +51,7 @@ final class GzTest extends \PHPUnit\Framework\TestCase /** * @testdox A gz archive cannot be overwritten by default - * @covers phpOMS\Utils\IO\Zip\Gz + * @covers \phpOMS\Utils\IO\Zip\Gz * @group framework */ public function testInvalidGz() : void @@ -71,7 +71,7 @@ final class GzTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing source cannot be unpacked - * @covers phpOMS\Utils\IO\Zip\Gz + * @covers \phpOMS\Utils\IO\Zip\Gz * @group framework */ public function testInvalidUnpackSource() : void @@ -81,7 +81,7 @@ final class GzTest extends \PHPUnit\Framework\TestCase /** * @testdox A destination cannot be overwritten - * @covers phpOMS\Utils\IO\Zip\Gz + * @covers \phpOMS\Utils\IO\Zip\Gz * @group framework */ public function testInvalidUnpackDestination() : void diff --git a/tests/Utils/IO/Zip/TarGzTest.php b/tests/Utils/IO/Zip/TarGzTest.php index 1b00f2fc6..416b9398f 100755 --- a/tests/Utils/IO/Zip/TarGzTest.php +++ b/tests/Utils/IO/Zip/TarGzTest.php @@ -34,7 +34,7 @@ final class TarGzTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be tar gz packed and unpacked - * @covers phpOMS\Utils\IO\Zip\TarGz + * @covers \phpOMS\Utils\IO\Zip\TarGz * @group framework */ public function testTarGz() : void @@ -85,7 +85,7 @@ final class TarGzTest extends \PHPUnit\Framework\TestCase /** * @testdox A tar gz archive cannot be overwritten by default - * @covers phpOMS\Utils\IO\Zip\TarGz + * @covers \phpOMS\Utils\IO\Zip\TarGz * @group framework */ public function testInvalidTarGz() : void @@ -122,7 +122,7 @@ final class TarGzTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing source cannot be unpacked - * @covers phpOMS\Utils\IO\Zip\TarGz + * @covers \phpOMS\Utils\IO\Zip\TarGz * @group framework */ public function testInvalidUnpackSource() : void @@ -132,7 +132,7 @@ final class TarGzTest extends \PHPUnit\Framework\TestCase /** * @testdox A destination cannot be overwritten - * @covers phpOMS\Utils\IO\Zip\TarGz + * @covers \phpOMS\Utils\IO\Zip\TarGz * @group framework */ public function testInvalidUnpackDestination() : void diff --git a/tests/Utils/IO/Zip/TarTest.php b/tests/Utils/IO/Zip/TarTest.php index 0e9bda0da..2d4771e4d 100755 --- a/tests/Utils/IO/Zip/TarTest.php +++ b/tests/Utils/IO/Zip/TarTest.php @@ -38,7 +38,7 @@ final class TarTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be tar packed and unpacked - * @covers phpOMS\Utils\IO\Zip\Tar + * @covers \phpOMS\Utils\IO\Zip\Tar * @group framework */ public function testTar() : void @@ -113,7 +113,7 @@ final class TarTest extends \PHPUnit\Framework\TestCase /** * @testdox Extracting invalid tar files fail - * @covers phpOMS\Utils\IO\Zip\Tar + * @covers \phpOMS\Utils\IO\Zip\Tar * @group framework */ public function testInvalidTarUnpack() : void @@ -131,7 +131,7 @@ final class TarTest extends \PHPUnit\Framework\TestCase /** * @testdox A tar archive cannot be overwritten by default - * @covers phpOMS\Utils\IO\Zip\Tar + * @covers \phpOMS\Utils\IO\Zip\Tar * @group framework */ public function testInvalidTar() : void @@ -159,7 +159,7 @@ final class TarTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing source cannot be unpacked - * @covers phpOMS\Utils\IO\Zip\Tar + * @covers \phpOMS\Utils\IO\Zip\Tar * @group framework */ public function testInvalidUnpackSource() : void @@ -169,7 +169,7 @@ final class TarTest extends \PHPUnit\Framework\TestCase /** * @testdox A destination cannot be overwritten - * @covers phpOMS\Utils\IO\Zip\Tar + * @covers \phpOMS\Utils\IO\Zip\Tar * @group framework */ public function testInvalidUnpackDestination() : void diff --git a/tests/Utils/IO/Zip/ZipTest.php b/tests/Utils/IO/Zip/ZipTest.php index f01fa8946..9cd7cfd12 100755 --- a/tests/Utils/IO/Zip/ZipTest.php +++ b/tests/Utils/IO/Zip/ZipTest.php @@ -38,7 +38,7 @@ final class ZipTest extends \PHPUnit\Framework\TestCase /** * @testdox Data can be zip packed and unpacked - * @covers phpOMS\Utils\IO\Zip\Zip + * @covers \phpOMS\Utils\IO\Zip\Zip * @group framework */ public function testZip() : void @@ -109,7 +109,7 @@ final class ZipTest extends \PHPUnit\Framework\TestCase /** * @testdox The output of the zip archive needs to be properly defined - * @covers phpOMS\Utils\IO\Zip\Zip + * @covers \phpOMS\Utils\IO\Zip\Zip * @group framework */ public function testInvalidZipDestination() : void @@ -126,7 +126,7 @@ final class ZipTest extends \PHPUnit\Framework\TestCase /** * @testdox Extracting invalid zip files fail - * @covers phpOMS\Utils\IO\Zip\Zip + * @covers \phpOMS\Utils\IO\Zip\Zip * @group framework */ public function testInvalidZipUnpack() : void @@ -144,7 +144,7 @@ final class ZipTest extends \PHPUnit\Framework\TestCase /** * @testdox A zip archive cannot be overwritten by default - * @covers phpOMS\Utils\IO\Zip\Zip + * @covers \phpOMS\Utils\IO\Zip\Zip * @group framework */ public function testInvalidZip() : void @@ -177,7 +177,7 @@ final class ZipTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing source cannot be unpacked - * @covers phpOMS\Utils\IO\Zip\Zip + * @covers \phpOMS\Utils\IO\Zip\Zip * @group framework */ public function testInvalidUnpackSource() : void @@ -187,7 +187,7 @@ final class ZipTest extends \PHPUnit\Framework\TestCase /** * @testdox A destination cannot be overwritten - * @covers phpOMS\Utils\IO\Zip\Zip + * @covers \phpOMS\Utils\IO\Zip\Zip * @group framework */ public function testInvalidUnpackDestination() : void diff --git a/tests/Utils/ImageUtilsTest.php b/tests/Utils/ImageUtilsTest.php index fb8b84c33..7b12f00f5 100755 --- a/tests/Utils/ImageUtilsTest.php +++ b/tests/Utils/ImageUtilsTest.php @@ -44,7 +44,7 @@ final class ImageUtilsTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\ImageUtils + * @covers \phpOMS\Utils\ImageUtils * @group slow */ public function testDifference() : void @@ -59,7 +59,7 @@ final class ImageUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Base64 image data can be decoded to an image - * @covers phpOMS\Utils\ImageUtils + * @covers \phpOMS\Utils\ImageUtils * @group framework */ public function testImage() : void diff --git a/tests/Utils/MbStringUtilsTest.php b/tests/Utils/MbStringUtilsTest.php index 9f7ff817c..4554733c1 100755 --- a/tests/Utils/MbStringUtilsTest.php +++ b/tests/Utils/MbStringUtilsTest.php @@ -27,7 +27,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox The entropy of a string can be calculated - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testEntropy() : void @@ -37,7 +37,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be checked for multi-byte characters - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testHasMultiBytes() : void @@ -48,7 +48,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-byte string can be checked if it starts with a defined string - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testStartsMb() : void @@ -60,7 +60,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-byte string can be checked if it ends with a defined string - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testEndsMb() : void @@ -72,7 +72,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The first character of a multi-byte string can be turned into upper case - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testTransformUpperCase() : void @@ -83,7 +83,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The first character of a multi-byte string can be turned into lower case - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testTransformLowerCase() : void @@ -94,7 +94,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-byte string can be trimmed - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testTrim() : void @@ -109,7 +109,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-byte string can be right-trimmed - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testRTrim() : void @@ -120,7 +120,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-byte string can be left-trimmed - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testLTrim() : void @@ -131,7 +131,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A multi-byte string can be checked if it contains at least one defined string element - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testContainsMb() : void @@ -144,7 +144,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The characters of a multi-byte string can be counted - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testCountMb() : void @@ -154,7 +154,7 @@ final class MbStringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The previous boundary of a utf-8 encoded quoted printable is identified correctly - * @covers phpOMS\Utils\MbStringUtils + * @covers \phpOMS\Utils\MbStringUtils * @group framework */ public function testUtf8CharBoundary() : void diff --git a/tests/Utils/NumericUtilsTest.php b/tests/Utils/NumericUtilsTest.php index 92b970576..a214b2e66 100755 --- a/tests/Utils/NumericUtilsTest.php +++ b/tests/Utils/NumericUtilsTest.php @@ -27,7 +27,7 @@ final class NumericUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox Integers can be unsigned right shifted - * @covers phpOMS\Utils\NumericUtils + * @covers \phpOMS\Utils\NumericUtils * @group framework */ public function testShift() : void diff --git a/tests/Utils/Parser/Markdown/MarkdownTest.php b/tests/Utils/Parser/Markdown/MarkdownTest.php index 47a4c3c3c..f0ef442ed 100755 --- a/tests/Utils/Parser/Markdown/MarkdownTest.php +++ b/tests/Utils/Parser/Markdown/MarkdownTest.php @@ -25,7 +25,7 @@ use phpOMS\Utils\Parser\Markdown\Markdown; final class MarkdownTest extends \PHPUnit\Framework\TestCase { /** - * @covers phpOMS\Utils\Parser\Markdown\Markdown + * @covers \phpOMS\Utils\Parser\Markdown\Markdown * @group framework */ public function testParsing() : void diff --git a/tests/Utils/Parser/Php/ArrayParserTest.php b/tests/Utils/Parser/Php/ArrayParserTest.php index d7462db70..172831e1d 100755 --- a/tests/Utils/Parser/Php/ArrayParserTest.php +++ b/tests/Utils/Parser/Php/ArrayParserTest.php @@ -26,7 +26,7 @@ final class ArrayParserTest extends \PHPUnit\Framework\TestCase { /** * @testdox An array can be encoded and decoded as php code - * @covers phpOMS\Utils\Parser\Php\ArrayParser + * @covers \phpOMS\Utils\Parser\Php\ArrayParser * @group framework */ public function testParser() : void @@ -74,7 +74,7 @@ final class ArrayParserTest extends \PHPUnit\Framework\TestCase /** * @testdox A value can be encoded and decoded into php code - * @covers phpOMS\Utils\Parser\Php\ArrayParser + * @covers \phpOMS\Utils\Parser\Php\ArrayParser * @group framework */ public function testInvalidValueType() : void diff --git a/tests/Utils/PermutationTest.php b/tests/Utils/PermutationTest.php index b59391b55..0817b9ac4 100755 --- a/tests/Utils/PermutationTest.php +++ b/tests/Utils/PermutationTest.php @@ -27,7 +27,7 @@ final class PermutationTest extends \PHPUnit\Framework\TestCase { /** * @testdox An array can be permuted - * @covers phpOMS\Utils\Permutation + * @covers \phpOMS\Utils\Permutation * @group framework */ public function testPermuteAll() : void @@ -42,7 +42,7 @@ final class PermutationTest extends \PHPUnit\Framework\TestCase /** * @testdox Two string can be checked if they are a permutation of each other - * @covers phpOMS\Utils\Permutation + * @covers \phpOMS\Utils\Permutation * @group framework */ public function testIsPermutation() : void @@ -53,7 +53,7 @@ final class PermutationTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be checked if it is a palindrome - * @covers phpOMS\Utils\Permutation + * @covers \phpOMS\Utils\Permutation * @group framework */ public function testIsPalindrome() : void @@ -65,7 +65,7 @@ final class PermutationTest extends \PHPUnit\Framework\TestCase /** * @testdox An array can be permuted with a permutation key - * @covers phpOMS\Utils\Permutation + * @covers \phpOMS\Utils\Permutation * @group framework */ public function testPermuteBy() : void @@ -75,7 +75,7 @@ final class PermutationTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing permutation key throws a OutOfBoundsException - * @covers phpOMS\Utils\Permutation + * @covers \phpOMS\Utils\Permutation * @group framework */ public function testWrongPermuteKeyLength() : void diff --git a/tests/Utils/RnG/ArrayRandomizeTest.php b/tests/Utils/RnG/ArrayRandomizeTest.php index 8f1cd9217..87ccce423 100755 --- a/tests/Utils/RnG/ArrayRandomizeTest.php +++ b/tests/Utils/RnG/ArrayRandomizeTest.php @@ -25,7 +25,7 @@ final class ArrayRandomizeTest extends \PHPUnit\Framework\TestCase { /** * @testdox An array can be randomized using the yates algorithm - * @covers phpOMS\Utils\RnG\ArrayRandomize + * @covers \phpOMS\Utils\RnG\ArrayRandomize * @group framework */ public function testYates() : void @@ -44,7 +44,7 @@ final class ArrayRandomizeTest extends \PHPUnit\Framework\TestCase /** * @testdox An array can be randomized using the knuth algorithm - * @covers phpOMS\Utils\RnG\ArrayRandomize + * @covers \phpOMS\Utils\RnG\ArrayRandomize * @group framework */ public function testKnuth() : void diff --git a/tests/Utils/RnG/DateTimeTest.php b/tests/Utils/RnG/DateTimeTest.php index 8f224fd9a..90683f9c8 100755 --- a/tests/Utils/RnG/DateTimeTest.php +++ b/tests/Utils/RnG/DateTimeTest.php @@ -25,7 +25,7 @@ final class DateTimeTest extends \PHPUnit\Framework\TestCase { /** * @testdox A random date time can be generated - * @covers phpOMS\Utils\RnG\DateTime + * @covers \phpOMS\Utils\RnG\DateTime * @group framework */ public function testRnG() : void diff --git a/tests/Utils/RnG/FileTest.php b/tests/Utils/RnG/FileTest.php index 88b04691e..57670ef3d 100755 --- a/tests/Utils/RnG/FileTest.php +++ b/tests/Utils/RnG/FileTest.php @@ -25,7 +25,7 @@ final class FileTest extends \PHPUnit\Framework\TestCase { /** * @testdox A random file extension can be generated - * @covers phpOMS\Utils\RnG\File + * @covers \phpOMS\Utils\RnG\File * @group framework */ public function testRnGExtension() : void diff --git a/tests/Utils/RnG/LinearCongruentialGeneratorTest.php b/tests/Utils/RnG/LinearCongruentialGeneratorTest.php index 0cfedbe96..c907fa071 100755 --- a/tests/Utils/RnG/LinearCongruentialGeneratorTest.php +++ b/tests/Utils/RnG/LinearCongruentialGeneratorTest.php @@ -25,7 +25,7 @@ final class LinearCongruentialGeneratorTest extends \PHPUnit\Framework\TestCase { /** * @testdox The bsd random number generator starts with the correct sequence - * @covers phpOMS\Utils\RnG\LinearCongruentialGenerator + * @covers \phpOMS\Utils\RnG\LinearCongruentialGenerator * @group framework */ public function testBsdRng() : void @@ -35,7 +35,7 @@ final class LinearCongruentialGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox The same bsd seed generates the same random number - * @covers phpOMS\Utils\RnG\LinearCongruentialGenerator + * @covers \phpOMS\Utils\RnG\LinearCongruentialGenerator * @group framework */ public function testBsdRngEqual() : void @@ -45,7 +45,7 @@ final class LinearCongruentialGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox Different bsd seeds generate different random numbers - * @covers phpOMS\Utils\RnG\LinearCongruentialGenerator + * @covers \phpOMS\Utils\RnG\LinearCongruentialGenerator * @group framework */ public function testBsdRngNotEqual() : void @@ -55,7 +55,7 @@ final class LinearCongruentialGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox The msvcrt random number generator starts with the correct sequence - * @covers phpOMS\Utils\RnG\LinearCongruentialGenerator + * @covers \phpOMS\Utils\RnG\LinearCongruentialGenerator * @group framework */ public function testMsRng() : void @@ -66,7 +66,7 @@ final class LinearCongruentialGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox The same msvcrt seed generates the same random number - * @covers phpOMS\Utils\RnG\LinearCongruentialGenerator + * @covers \phpOMS\Utils\RnG\LinearCongruentialGenerator * @group framework */ public function testMsRngEqual() : void @@ -76,7 +76,7 @@ final class LinearCongruentialGeneratorTest extends \PHPUnit\Framework\TestCase /** * @testdox Different msvcrt seeds generate different random numbers - * @covers phpOMS\Utils\RnG\LinearCongruentialGenerator + * @covers \phpOMS\Utils\RnG\LinearCongruentialGenerator * @group framework */ public function testMsRngNotEqual() : void diff --git a/tests/Utils/RnG/NameTest.php b/tests/Utils/RnG/NameTest.php index a04a1009c..67eb6d23c 100755 --- a/tests/Utils/RnG/NameTest.php +++ b/tests/Utils/RnG/NameTest.php @@ -25,7 +25,7 @@ final class NameTest extends \PHPUnit\Framework\TestCase { /** * @testdox Random female and male names can be generated - * @covers phpOMS\Utils\RnG\Name + * @covers \phpOMS\Utils\RnG\Name * @group framework */ public function testRandom() : void diff --git a/tests/Utils/RnG/PhoneTest.php b/tests/Utils/RnG/PhoneTest.php index 0cec957ec..91eda43a5 100755 --- a/tests/Utils/RnG/PhoneTest.php +++ b/tests/Utils/RnG/PhoneTest.php @@ -25,7 +25,7 @@ final class PhoneTest extends \PHPUnit\Framework\TestCase { /** * @testdox Random phone numbers can be generated - * @covers phpOMS\Utils\RnG\Phone + * @covers \phpOMS\Utils\RnG\Phone * @group framework */ public function testRnG() : void diff --git a/tests/Utils/RnG/StringUtilsTest.php b/tests/Utils/RnG/StringUtilsTest.php index f1f4d6a93..2719ea69e 100755 --- a/tests/Utils/RnG/StringUtilsTest.php +++ b/tests/Utils/RnG/StringUtilsTest.php @@ -25,7 +25,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox Random strings can be generated - * @covers phpOMS\Utils\RnG\StringUtils + * @covers \phpOMS\Utils\RnG\StringUtils * @slowThreshold 1500 * @group framework */ diff --git a/tests/Utils/RnG/TextTest.php b/tests/Utils/RnG/TextTest.php index 3dc45aa70..d95bacf4c 100755 --- a/tests/Utils/RnG/TextTest.php +++ b/tests/Utils/RnG/TextTest.php @@ -25,7 +25,7 @@ final class TextTest extends \PHPUnit\Framework\TestCase { /** * @testdox Random text can be generated - * @covers phpOMS\Utils\RnG\Text + * @covers \phpOMS\Utils\RnG\Text * @group framework */ public function testRnG() : void diff --git a/tests/Utils/StringCompareTest.php b/tests/Utils/StringCompareTest.php index 265378e30..943f0d3a9 100755 --- a/tests/Utils/StringCompareTest.php +++ b/tests/Utils/StringCompareTest.php @@ -54,7 +54,7 @@ final class StringCompareTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be matched with a dictionary entry - * @covers phpOMS\Utils\StringCompare + * @covers \phpOMS\Utils\StringCompare * @group framework */ public function testDictionaryMatch() : void @@ -65,7 +65,7 @@ final class StringCompareTest extends \PHPUnit\Framework\TestCase /** * @testdox A string doesn't match a dictionary entry if it is very different - * @covers phpOMS\Utils\StringCompare + * @covers \phpOMS\Utils\StringCompare * @group framework */ public function testInvalidDictionary() : void @@ -75,7 +75,7 @@ final class StringCompareTest extends \PHPUnit\Framework\TestCase /** * @testdox A new dictionary entry can be created and returned - * @covers phpOMS\Utils\StringCompare + * @covers \phpOMS\Utils\StringCompare * @group framework */ public function testDictionaryAdd() : void @@ -86,7 +86,7 @@ final class StringCompareTest extends \PHPUnit\Framework\TestCase /** * @testdox Two texts can be compared on a per word basis for similarity - * @covers phpOMS\Utils\StringCompare + * @covers \phpOMS\Utils\StringCompare * @group framework */ public function testValueWords() : void @@ -99,7 +99,7 @@ final class StringCompareTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\StringCompare + * @covers \phpOMS\Utils\StringCompare * @group framework */ public function testJaro() : void @@ -110,7 +110,7 @@ final class StringCompareTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Utils\StringCompare + * @covers \phpOMS\Utils\StringCompare * @group framework */ public function testJaroEmpty() : void diff --git a/tests/Utils/StringUtilsTest.php b/tests/Utils/StringUtilsTest.php index 742066d88..e5f73f45c 100755 --- a/tests/Utils/StringUtilsTest.php +++ b/tests/Utils/StringUtilsTest.php @@ -29,7 +29,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox The entropy of a string can be calculated - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testEntropy() : void @@ -39,7 +39,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be checked if it starts with a defined string - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testStarts() : void @@ -51,7 +51,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be checked if it ends with a defined string - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testEnds() : void @@ -63,7 +63,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be checked if it contains at least one defined string element - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testContains() : void @@ -76,7 +76,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The amount of a defined characters in the beginning of a string can be counted - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testCountBeginning() : void @@ -87,7 +87,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A string creates a integer hash - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testIntHash() : void @@ -97,7 +97,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The same string creates the same hash - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testSameHash() : void @@ -107,7 +107,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Different strings create different hashes - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testDifferentHash() : void @@ -117,7 +117,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Various data types can be stringified - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testStringify() : void @@ -169,7 +169,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Stringify/rendering a unknown data type returns null - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testInvalidStringify() : void @@ -179,7 +179,7 @@ final class StringUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox The difference between two strings can be evaluated - * @covers phpOMS\Utils\StringUtils + * @covers \phpOMS\Utils\StringUtils * @group framework */ public function testStringDiffHtml() : void diff --git a/tests/Utils/TaskSchedule/CronJobTest.php b/tests/Utils/TaskSchedule/CronJobTest.php index c6a49520d..4c3b1da36 100755 --- a/tests/Utils/TaskSchedule/CronJobTest.php +++ b/tests/Utils/TaskSchedule/CronJobTest.php @@ -25,7 +25,7 @@ final class CronJobTest extends \PHPUnit\Framework\TestCase { /** * @testdox The cron job has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\CronJob + * @covers \phpOMS\Utils\TaskSchedule\CronJob * @group framework */ public function testDefault() : void @@ -37,7 +37,7 @@ final class CronJobTest extends \PHPUnit\Framework\TestCase /** * @testdox A cron job can be created from an array and rendered - * @covers phpOMS\Utils\TaskSchedule\CronJob + * @covers \phpOMS\Utils\TaskSchedule\CronJob * @group framework */ public function testCreateJobWithData() : void diff --git a/tests/Utils/TaskSchedule/CronTest.php b/tests/Utils/TaskSchedule/CronTest.php index 3e07c71ee..44e6fb72b 100755 --- a/tests/Utils/TaskSchedule/CronTest.php +++ b/tests/Utils/TaskSchedule/CronTest.php @@ -53,7 +53,7 @@ final class CronTest extends \PHPUnit\Framework\TestCase /** * @testdox The cron handler has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\Cron + * @covers \phpOMS\Utils\TaskSchedule\Cron * @group framework */ public function testDefault() : void @@ -63,7 +63,7 @@ final class CronTest extends \PHPUnit\Framework\TestCase /** * @testdox The cron binary location path can be guessed - * @covers phpOMS\Utils\TaskSchedule\Cron + * @covers \phpOMS\Utils\TaskSchedule\Cron * @group framework */ public function testGuessBinary() : void @@ -73,7 +73,7 @@ final class CronTest extends \PHPUnit\Framework\TestCase /** * @testdox A cron job can be created and returned - * @covers phpOMS\Utils\TaskSchedule\Cron + * @covers \phpOMS\Utils\TaskSchedule\Cron * @group framework */ public function testCronJobInputOutput() : void @@ -92,7 +92,7 @@ final class CronTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing cron name cannot be returned - * @covers phpOMS\Utils\TaskSchedule\Cron + * @covers \phpOMS\Utils\TaskSchedule\Cron * @group framework */ public function testInvalidCronJobName() : void @@ -103,7 +103,7 @@ final class CronTest extends \PHPUnit\Framework\TestCase /** * @testdox A cron job can be updated - * @covers phpOMS\Utils\TaskSchedule\Cron + * @covers \phpOMS\Utils\TaskSchedule\Cron * @group framework */ public function testCronJobUpdate() : void @@ -125,7 +125,7 @@ final class CronTest extends \PHPUnit\Framework\TestCase /** * @testdox A cron job can be deleted - * @covers phpOMS\Utils\TaskSchedule\Cron + * @covers \phpOMS\Utils\TaskSchedule\Cron * @group framework */ public function testDelete() : void diff --git a/tests/Utils/TaskSchedule/IntervalTest.php b/tests/Utils/TaskSchedule/IntervalTest.php index 6b4e1cc65..fd94519ac 100755 --- a/tests/Utils/TaskSchedule/IntervalTest.php +++ b/tests/Utils/TaskSchedule/IntervalTest.php @@ -25,7 +25,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase { /** * @testdox The interval has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testDefault() : void @@ -57,7 +57,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox The start date can be set during initialization and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testConstructorInputOutput() : void @@ -68,7 +68,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox The start date can set and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testStartInputOutput() : void @@ -81,7 +81,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox The end date can set and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testEndInputOutput() : void @@ -94,7 +94,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox The maximum execution duration can set and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testMaxExecutionInputOutput() : void @@ -107,7 +107,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution minute can be added and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testMinuteInputOutput() : void @@ -124,7 +124,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution minute can be overwritten - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testMinuteOverwriteInputOutput() : void @@ -142,7 +142,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution hour can be added and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testHourInputOutput() : void @@ -159,7 +159,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution hour can be overwritten - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testHourOverwriteInputOutput() : void @@ -177,7 +177,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution year can be added and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testYearInputOutput() : void @@ -194,7 +194,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution year can be overwritten - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testYearOverwriteInputOutput() : void @@ -212,7 +212,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution day of month can be added and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testDayOfMonthInputOutput() : void @@ -229,7 +229,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution day of month can be overwritten - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testDayOfMonthOverwriteInputOutput() : void @@ -247,7 +247,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution day of week can be added and returned - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testDayOfWeekInputOutput() : void @@ -264,7 +264,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox An execution day of week can be overwritten - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testDayOfWeekOverwriteInputOutput() : void @@ -282,7 +282,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox A interval can be serialized - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testSerialize() : void @@ -312,7 +312,7 @@ final class IntervalTest extends \PHPUnit\Framework\TestCase /** * @testdox A serialized interval can be unserialized - * @covers phpOMS\Utils\TaskSchedule\Interval + * @covers \phpOMS\Utils\TaskSchedule\Interval * @group framework */ public function testUnserialize() : void diff --git a/tests/Utils/TaskSchedule/ScheduleTest.php b/tests/Utils/TaskSchedule/ScheduleTest.php index e5bacad7e..89cc2745d 100755 --- a/tests/Utils/TaskSchedule/ScheduleTest.php +++ b/tests/Utils/TaskSchedule/ScheduleTest.php @@ -25,7 +25,7 @@ final class ScheduleTest extends \PHPUnit\Framework\TestCase { /** * @testdox The task has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\Schedule + * @covers \phpOMS\Utils\TaskSchedule\Schedule * @group framework */ public function testDefault() : void @@ -37,7 +37,7 @@ final class ScheduleTest extends \PHPUnit\Framework\TestCase /** * @testdox A task can be created from an array and rendered - * @covers phpOMS\Utils\TaskSchedule\Schedule + * @covers \phpOMS\Utils\TaskSchedule\Schedule * * @group framework */ diff --git a/tests/Utils/TaskSchedule/SchedulerAbstractTest.php b/tests/Utils/TaskSchedule/SchedulerAbstractTest.php index 2fddfc2b9..318cc6273 100755 --- a/tests/Utils/TaskSchedule/SchedulerAbstractTest.php +++ b/tests/Utils/TaskSchedule/SchedulerAbstractTest.php @@ -25,7 +25,7 @@ final class SchedulerAbstractTest extends \PHPUnit\Framework\TestCase { /** * @testdox The scheduler has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\SchedulerAbstract + * @covers \phpOMS\Utils\TaskSchedule\SchedulerAbstract * @group framework */ public function testDefault() : void @@ -35,7 +35,7 @@ final class SchedulerAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The scheduler binary location path can be guessed - * @covers phpOMS\Utils\TaskSchedule\SchedulerAbstract + * @covers \phpOMS\Utils\TaskSchedule\SchedulerAbstract * @group framework */ public function testGuessBinary() : void diff --git a/tests/Utils/TaskSchedule/SchedulerFactoryTest.php b/tests/Utils/TaskSchedule/SchedulerFactoryTest.php index d68c434c4..6b9790499 100755 --- a/tests/Utils/TaskSchedule/SchedulerFactoryTest.php +++ b/tests/Utils/TaskSchedule/SchedulerFactoryTest.php @@ -27,7 +27,7 @@ final class SchedulerFactoryTest extends \PHPUnit\Framework\TestCase { /** * @testdox The correct scheduler is crated depending on the operating system - * @covers phpOMS\Utils\TaskSchedule\SchedulerFactory + * @covers \phpOMS\Utils\TaskSchedule\SchedulerFactory * @group framework */ public function testCreate() : void diff --git a/tests/Utils/TaskSchedule/TaskAbstractTest.php b/tests/Utils/TaskSchedule/TaskAbstractTest.php index 31f8ab72f..9be541c11 100755 --- a/tests/Utils/TaskSchedule/TaskAbstractTest.php +++ b/tests/Utils/TaskSchedule/TaskAbstractTest.php @@ -47,7 +47,7 @@ final class TaskAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The task abstraction has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\TaskAbstract + * @covers \phpOMS\Utils\TaskSchedule\TaskAbstract * @group framework */ public function testDefault() : void @@ -63,7 +63,7 @@ final class TaskAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The command can be set and returned - * @covers phpOMS\Utils\TaskSchedule\TaskAbstract + * @covers \phpOMS\Utils\TaskSchedule\TaskAbstract * @group framework */ public function testCommandInputOutput() : void @@ -74,7 +74,7 @@ final class TaskAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The interval can be set and returned - * @covers phpOMS\Utils\TaskSchedule\TaskAbstract + * @covers \phpOMS\Utils\TaskSchedule\TaskAbstract * @group framework */ public function testIntervalInputOutput() : void @@ -85,7 +85,7 @@ final class TaskAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The comment can be set and returned - * @covers phpOMS\Utils\TaskSchedule\TaskAbstract + * @covers \phpOMS\Utils\TaskSchedule\TaskAbstract * @group framework */ public function testCommentInputOutput() : void @@ -96,7 +96,7 @@ final class TaskAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The last runtime can be set and returned - * @covers phpOMS\Utils\TaskSchedule\TaskAbstract + * @covers \phpOMS\Utils\TaskSchedule\TaskAbstract * @group framework */ public function testLastRuntimeInputOutput() : void @@ -108,7 +108,7 @@ final class TaskAbstractTest extends \PHPUnit\Framework\TestCase /** * @testdox The next runtime can be set and returned - * @covers phpOMS\Utils\TaskSchedule\TaskAbstract + * @covers \phpOMS\Utils\TaskSchedule\TaskAbstract * @group framework */ public function testNextRuntimeInputOutput() : void diff --git a/tests/Utils/TaskSchedule/TaskFactoryTest.php b/tests/Utils/TaskSchedule/TaskFactoryTest.php index 81c41c2ae..662a79b3b 100755 --- a/tests/Utils/TaskSchedule/TaskFactoryTest.php +++ b/tests/Utils/TaskSchedule/TaskFactoryTest.php @@ -27,7 +27,7 @@ final class TaskFactoryTest extends \PHPUnit\Framework\TestCase { /** * @testdox The correct task is crated depending on the operating system - * @covers phpOMS\Utils\TaskSchedule\TaskFactory + * @covers \phpOMS\Utils\TaskSchedule\TaskFactory * @group framework */ public function testFactory() : void diff --git a/tests/Utils/TaskSchedule/TaskSchedulerTest.php b/tests/Utils/TaskSchedule/TaskSchedulerTest.php index d630e56d4..4ad1d2077 100755 --- a/tests/Utils/TaskSchedule/TaskSchedulerTest.php +++ b/tests/Utils/TaskSchedule/TaskSchedulerTest.php @@ -42,7 +42,7 @@ final class TaskSchedulerTest extends \PHPUnit\Framework\TestCase /** * @testdox The task handler has the expected default values after initialization - * @covers phpOMS\Utils\TaskSchedule\TaskScheduler + * @covers \phpOMS\Utils\TaskSchedule\TaskScheduler * @group framework */ public function testDefault() : void @@ -52,7 +52,7 @@ final class TaskSchedulerTest extends \PHPUnit\Framework\TestCase /** * @testdox The task binary location path can be guessed - * @covers phpOMS\Utils\TaskSchedule\TaskScheduler + * @covers \phpOMS\Utils\TaskSchedule\TaskScheduler * @group framework */ public function testGuessBinary() : void @@ -62,7 +62,7 @@ final class TaskSchedulerTest extends \PHPUnit\Framework\TestCase /** * @testdox A task can be created and returned - * @covers phpOMS\Utils\TaskSchedule\TaskScheduler + * @covers \phpOMS\Utils\TaskSchedule\TaskScheduler * @group framework */ public function testTaskScheduleInputOutput() : void @@ -81,7 +81,7 @@ final class TaskSchedulerTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing task name cannot be returned - * @covers phpOMS\Utils\TaskSchedule\TaskScheduler + * @covers \phpOMS\Utils\TaskSchedule\TaskScheduler * @group framework */ public function testInvalidTaskScheduleName() : void @@ -92,7 +92,7 @@ final class TaskSchedulerTest extends \PHPUnit\Framework\TestCase /** * @testdox A task can be updated - * @covers phpOMS\Utils\TaskSchedule\TaskScheduler + * @covers \phpOMS\Utils\TaskSchedule\TaskScheduler * @group framework */ public function testTaskScheduleUpdate() : void @@ -114,7 +114,7 @@ final class TaskSchedulerTest extends \PHPUnit\Framework\TestCase /** * @testdox A task can be deleted - * @covers phpOMS\Utils\TaskSchedule\TaskScheduler + * @covers \phpOMS\Utils\TaskSchedule\TaskScheduler * @group framework */ public function testDelete() : void diff --git a/tests/Utils/TestUtilsTest.php b/tests/Utils/TestUtilsTest.php index a1b2a69c8..71a821c06 100755 --- a/tests/Utils/TestUtilsTest.php +++ b/tests/Utils/TestUtilsTest.php @@ -27,7 +27,7 @@ final class TestUtilsTest extends \PHPUnit\Framework\TestCase { /** * @testdox A member value can be returned - * @covers phpOMS\Utils\TestUtils + * @covers \phpOMS\Utils\TestUtils * @group framework */ public function testGet() : void @@ -42,7 +42,7 @@ final class TestUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox Invalid member variable returns null - * @covers phpOMS\Utils\TestUtils + * @covers \phpOMS\Utils\TestUtils * @group framework */ public function testInvalidGet() : void @@ -54,7 +54,7 @@ final class TestUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A member value can be set and returned - * @covers phpOMS\Utils\TestUtils + * @covers \phpOMS\Utils\TestUtils * @group framework */ public function testInputOutput() : void @@ -74,7 +74,7 @@ final class TestUtilsTest extends \PHPUnit\Framework\TestCase /** * @testdox A none-existing member variable cannot be set - * @covers phpOMS\Utils\TestUtils + * @covers \phpOMS\Utils\TestUtils * @group framework */ public function testInputInputOutput() : void diff --git a/tests/Utils/img/logo_resized.png b/tests/Utils/img/logo_resized.png index 31a4f5706..6f602362d 100644 Binary files a/tests/Utils/img/logo_resized.png and b/tests/Utils/img/logo_resized.png differ diff --git a/tests/Validation/Base/DateTimeTest.php b/tests/Validation/Base/DateTimeTest.php index 60e154e83..3649eb099 100755 --- a/tests/Validation/Base/DateTimeTest.php +++ b/tests/Validation/Base/DateTimeTest.php @@ -27,7 +27,7 @@ final class DateTimeTest extends \PHPUnit\Framework\TestCase { /** * @testdox A date time string can be validated - * @covers phpOMS\Validation\Base\DateTime + * @covers \phpOMS\Validation\Base\DateTime * @group framework */ public function testDateTime() : void diff --git a/tests/Validation/Base/JsonTest.php b/tests/Validation/Base/JsonTest.php index c85f3e8e5..1bc84bf61 100755 --- a/tests/Validation/Base/JsonTest.php +++ b/tests/Validation/Base/JsonTest.php @@ -25,7 +25,7 @@ final class JsonTest extends \PHPUnit\Framework\TestCase { /** * @testdox A json string can be validated - * @covers phpOMS\Validation\Base\Json + * @covers \phpOMS\Validation\Base\Json * @group framework */ public function testJson() : void @@ -36,7 +36,7 @@ final class JsonTest extends \PHPUnit\Framework\TestCase /** * @testdox A json string can be validated against a template definition - * @covers phpOMS\Validation\Base\Json + * @covers \phpOMS\Validation\Base\Json * @group framework */ public function testJsonTemplate() : void @@ -50,7 +50,7 @@ final class JsonTest extends \PHPUnit\Framework\TestCase /** * @testdox A json string can be validated against a template definition with additional data - * @covers phpOMS\Validation\Base\Json + * @covers \phpOMS\Validation\Base\Json * @group framework */ public function testJsonTemplateAdditional() : void @@ -63,7 +63,7 @@ final class JsonTest extends \PHPUnit\Framework\TestCase /** * @testdox A json string cannot be validated against a template definition with additional data if an exact match is enforced - * @covers phpOMS\Validation\Base\Json + * @covers \phpOMS\Validation\Base\Json * @group framework */ public function testJsonTemplateInvalidAdditional() : void @@ -76,7 +76,7 @@ final class JsonTest extends \PHPUnit\Framework\TestCase /** * @testdox A json string cannot be validated against a template definition with missing data if an exact match is enforced - * @covers phpOMS\Validation\Base\Json + * @covers \phpOMS\Validation\Base\Json * @group framework */ public function testJsonTemplateInvalidMissing() : void @@ -89,7 +89,7 @@ final class JsonTest extends \PHPUnit\Framework\TestCase /** * @testdox A json string cannot be validated against a template definition if it doesn't match the template - * @covers phpOMS\Validation\Base\Json + * @covers \phpOMS\Validation\Base\Json * @group framework */ public function testInvalidJsonTemplate() : void diff --git a/tests/Validation/Finance/BICTest.php b/tests/Validation/Finance/BICTest.php index d7c43a592..8ae64727a 100755 --- a/tests/Validation/Finance/BICTest.php +++ b/tests/Validation/Finance/BICTest.php @@ -25,7 +25,7 @@ final class BICTest extends \PHPUnit\Framework\TestCase { /** * @testdox A BIC can be validated - * @covers phpOMS\Validation\Finance\BIC + * @covers \phpOMS\Validation\Finance\BIC * @group framework */ public function testBic() : void diff --git a/tests/Validation/Finance/CreditCardTest.php b/tests/Validation/Finance/CreditCardTest.php index 8fe5899af..2ca9540c0 100755 --- a/tests/Validation/Finance/CreditCardTest.php +++ b/tests/Validation/Finance/CreditCardTest.php @@ -25,7 +25,7 @@ final class CreditCardTest extends \PHPUnit\Framework\TestCase { /** * @testdox A credit card can be validated - * @covers phpOMS\Validation\Finance\CreditCard + * @covers \phpOMS\Validation\Finance\CreditCard * @group framework */ public function testCreditCard() : void @@ -37,7 +37,7 @@ final class CreditCardTest extends \PHPUnit\Framework\TestCase /** * @testdox A invalid type cannot be validated - * @covers phpOMS\Validation\Finance\CreditCard + * @covers \phpOMS\Validation\Finance\CreditCard * @group framework */ public function testInvalidCreditCardType() : void diff --git a/tests/Validation/Finance/IbanTest.php b/tests/Validation/Finance/IbanTest.php index 0d092d347..cbaed1446 100755 --- a/tests/Validation/Finance/IbanTest.php +++ b/tests/Validation/Finance/IbanTest.php @@ -25,7 +25,7 @@ final class IbanTest extends \PHPUnit\Framework\TestCase { /** * @testdox A iban can be validated - * @covers phpOMS\Validation\Finance\Iban + * @covers \phpOMS\Validation\Finance\Iban * @group framework */ public function testValidation() : void diff --git a/tests/Validation/Network/EmailTest.php b/tests/Validation/Network/EmailTest.php index 773c65007..1d624db4f 100755 --- a/tests/Validation/Network/EmailTest.php +++ b/tests/Validation/Network/EmailTest.php @@ -25,7 +25,7 @@ final class EmailTest extends \PHPUnit\Framework\TestCase { /** * @testdox A email can be validated - * @covers phpOMS\Validation\Network\Email + * @covers \phpOMS\Validation\Network\Email * @group framework */ public function testValidation() : void diff --git a/tests/Validation/Network/HostnameTest.php b/tests/Validation/Network/HostnameTest.php index 8ea29500a..6395eb8cf 100755 --- a/tests/Validation/Network/HostnameTest.php +++ b/tests/Validation/Network/HostnameTest.php @@ -25,7 +25,7 @@ final class HostnameTest extends \PHPUnit\Framework\TestCase { /** * @testdox A hostname can be validated - * @covers phpOMS\Validation\Network\Hostname + * @covers \phpOMS\Validation\Network\Hostname * @group framework */ public function testHostnameDomain() : void @@ -38,7 +38,7 @@ final class HostnameTest extends \PHPUnit\Framework\TestCase /** * @testdox A IP can be validated as hostname - * @covers phpOMS\Validation\Network\Hostname + * @covers \phpOMS\Validation\Network\Hostname * @group framework */ public function testHostnameIp() : void diff --git a/tests/Validation/Network/IpTest.php b/tests/Validation/Network/IpTest.php index cf93d80cf..ef9ae2e03 100755 --- a/tests/Validation/Network/IpTest.php +++ b/tests/Validation/Network/IpTest.php @@ -25,7 +25,7 @@ final class IpTest extends \PHPUnit\Framework\TestCase { /** * @testdox A ip can be validated - * @covers phpOMS\Validation\Network\Ip + * @covers \phpOMS\Validation\Network\Ip * @group framework */ public function testValid() : void @@ -38,7 +38,7 @@ final class IpTest extends \PHPUnit\Framework\TestCase /** * @testdox A ip4 can be validated - * @covers phpOMS\Validation\Network\Ip + * @covers \phpOMS\Validation\Network\Ip * @group framework */ public function testValidIp4() : void @@ -49,7 +49,7 @@ final class IpTest extends \PHPUnit\Framework\TestCase /** * @testdox A ip6 can be validated - * @covers phpOMS\Validation\Network\Ip + * @covers \phpOMS\Validation\Network\Ip * @group framework */ public function testValidIp6() : void diff --git a/tests/Validation/ValidatorTest.php b/tests/Validation/ValidatorTest.php index 147b97900..57a1d7f13 100755 --- a/tests/Validation/ValidatorTest.php +++ b/tests/Validation/ValidatorTest.php @@ -28,7 +28,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase { /** * @testdox A string can be checked if it contains a substring - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testValidationContains() : void @@ -39,7 +39,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase /** * @testdox A string can be checked if it has a certain length - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testValidationLength() : void @@ -51,7 +51,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase /** * @testdox A value can be checked if it is in range - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testValidationLimit() : void @@ -63,7 +63,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase /** * @testdox A value can be checked to be of a defined type - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testValidationType() : void @@ -74,7 +74,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase /** * @testdox The error message and error code have the expected default values - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testValidationError() : void @@ -86,7 +86,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase /** * @testdox Custom validators can be specified in order to validate a value - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testValidators() : void @@ -105,7 +105,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase /** * @testdox A value can be checked to match a regular expression - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testMatching() : void @@ -117,7 +117,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testErrorMessage() : void @@ -126,7 +126,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testErrorCode() : void @@ -135,7 +135,7 @@ final class ValidatorTest extends \PHPUnit\Framework\TestCase } /** - * @covers phpOMS\Validation\Validator + * @covers \phpOMS\Validation\Validator * @group framework */ public function testResetError() : void diff --git a/tests/Version/VersionTest.php b/tests/Version/VersionTest.php index fdd2a7d85..8b5925cb9 100755 --- a/tests/Version/VersionTest.php +++ b/tests/Version/VersionTest.php @@ -27,7 +27,7 @@ final class VersionTest extends \PHPUnit\Framework\TestCase { /** * @testdox Versions can be compared with each other - * @covers phpOMS\Version\Version + * @covers \phpOMS\Version\Version * @group framework */ public function testVersionCompare() : void diff --git a/tests/Views/PaginationViewTest.php b/tests/Views/PaginationViewTest.php index 370265526..e079a921b 100755 --- a/tests/Views/PaginationViewTest.php +++ b/tests/Views/PaginationViewTest.php @@ -27,7 +27,7 @@ final class PaginationViewTest extends \PHPUnit\Framework\TestCase { /** * @testdox The pagination view has the expected default values after initialization - * @covers phpOMS\Views\PaginationView + * @covers \phpOMS\Views\PaginationView * @group framework */ public function testDefault() : void @@ -41,7 +41,7 @@ final class PaginationViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The max pages can be set and returned - * @covers phpOMS\Views\PaginationView + * @covers \phpOMS\Views\PaginationView * @group framework */ public function testMaxPagesInputOutput() : void @@ -54,7 +54,7 @@ final class PaginationViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The pages can be set and returned - * @covers phpOMS\Views\PaginationView + * @covers \phpOMS\Views\PaginationView * @group framework */ public function testPagesInputOutput() : void @@ -67,7 +67,7 @@ final class PaginationViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The page can be set and returned - * @covers phpOMS\Views\PaginationView + * @covers \phpOMS\Views\PaginationView * @group framework */ public function testPageInputOutput() : void @@ -80,7 +80,7 @@ final class PaginationViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The results can be set and returned - * @covers phpOMS\Views\PaginationView + * @covers \phpOMS\Views\PaginationView * @group framework */ public function testResultsInputOutput() : void diff --git a/tests/Views/ViewTest.php b/tests/Views/ViewTest.php index f4bce81ca..da191d292 100755 --- a/tests/Views/ViewTest.php +++ b/tests/Views/ViewTest.php @@ -56,7 +56,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The view has the expected default values after initialization - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testDefault() : void @@ -76,7 +76,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The view data can be checked for existence - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testHasData() : void @@ -90,7 +90,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The view can output text from the localization manager - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetText() : void @@ -114,7 +114,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The view can output html escaped text from the localization manager - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetHtml() : void @@ -138,7 +138,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The numeric value can be printed based on the localization - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetNumeric() : void @@ -151,7 +151,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The percentage value can be printed based on the localization - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetPercentage() : void @@ -163,7 +163,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The currency value can be printed based on the localization - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetCurrency() : void @@ -179,7 +179,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The datetime value can be printed based on the localization - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetDateTime() : void @@ -193,7 +193,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox View data can be set and returned - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testDataInputOutput() : void @@ -206,7 +206,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox View data can be added and returned - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testDataAdd() : void @@ -219,7 +219,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox View data can be removed - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testRemove() : void @@ -233,7 +233,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing view data cannot be removed - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testInvalidDataRemove() : void @@ -245,7 +245,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The request can be returned - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetRequest() : void @@ -258,7 +258,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox The response can be returned - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testGetResponse() : void @@ -270,7 +270,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Text can be html escaped - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testPrintHtml() : void @@ -283,7 +283,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Views can be added and returned from a view - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testViewInputOutput() : void @@ -298,7 +298,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing views cannot be returned - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testInvalidViewGet() : void @@ -310,7 +310,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Views can be removed - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testViewRemove() : void @@ -324,7 +324,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox None-existing views cannot be removed - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testInvalidViewRemove() : void @@ -336,7 +336,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox A view can be forcefully overwritten - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testOverwritingView() : void @@ -350,7 +350,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox By default a view is not overwritten - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testInvalidOverwritingView() : void @@ -364,7 +364,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox A view template can be rendered - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testRender() : void @@ -377,7 +377,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox A view template can be build - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testBuild() : void @@ -390,7 +390,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox A view template can be serialized - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testSerialize() : void @@ -404,7 +404,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox A view can be turned into an array containing the rendered templates - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testArray() : void @@ -428,7 +428,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Rendering a invalid template throws a PathException - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testRenderException() : void @@ -441,7 +441,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Building a invalid template throws a PathException - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testBuildException() : void @@ -454,7 +454,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Serializing a invalid template throws a PathException - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testSerializeException() : void @@ -467,7 +467,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Getting the text without defining a module throws a InvalidModuleException exception - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testTextWithoutModuleAndTemplate() : void @@ -480,7 +480,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Getting the text with an invalid template path throws a InvalidModuleException exception - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testTextFromInvalidTemplatePath() : void @@ -494,7 +494,7 @@ final class ViewTest extends \PHPUnit\Framework\TestCase /** * @testdox Getting the text without defining a template throws a InvalidThemeException exception - * @covers phpOMS\Views\View + * @covers \phpOMS\Views\View * @group framework */ public function testTextInvalidTemplate() : void