From a1b591d1416efd67974e544b0e85da2e91109af8 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 20 Mar 2024 03:00:25 +0000 Subject: [PATCH] fix tests --- README.md | 4 +- composer.json | 10 +- tests/Account/AccountManagerTest.php | 12 +- tests/Account/AccountTest.php | 16 +- tests/Account/GroupTest.php | 10 +- tests/Account/NullAccountTest.php | 4 +- tests/Account/NullGroupTest.php | 4 +- tests/Account/PermissionAbstractTest.php | 14 +- tests/Ai/Ocr/BasicOcrTest.php | 6 +- tests/Ai/Ocr/Tesseract/TesseractOcrTest.php | 8 +- tests/Algorithm/Clustering/KmeansTest.php | 2 +- tests/Algorithm/Clustering/PointTest.php | 8 +- .../CoinMatching/MinimumCoinProblemTest.php | 2 +- .../Graph/DependencyResolverTest.php | 4 +- tests/Algorithm/Graph/MarkovChainTest.php | 8 +- tests/Algorithm/JobScheduling/JobTest.php | 2 +- .../Algorithm/JobScheduling/WeightedTest.php | 4 +- tests/Algorithm/Knapsack/BackpackTest.php | 4 +- tests/Algorithm/Knapsack/BoundedTest.php | 2 +- tests/Algorithm/Knapsack/ContinuousTest.php | 4 +- tests/Algorithm/Knapsack/ItemTest.php | 2 +- tests/Algorithm/Maze/MazeGeneratorTest.php | 4 +- tests/Algorithm/PathFinding/AStarNodeTest.php | 12 +- tests/Algorithm/PathFinding/AStarTest.php | 10 +- tests/Algorithm/PathFinding/GridTest.php | 36 ++-- tests/Algorithm/PathFinding/HeuristicTest.php | 2 +- .../PathFinding/JumpPointNodeTest.php | 14 +- .../PathFinding/JumpPointSearchTest.php | 10 +- tests/Algorithm/PathFinding/NodeTest.php | 8 +- tests/Algorithm/PathFinding/PathTest.php | 8 +- tests/Algorithm/Rating/EloTest.php | 4 +- tests/Algorithm/Rating/Glicko1Test.php | 4 +- tests/Algorithm/Rating/Glicko2Test.php | 4 +- tests/Api/EUVAT/EUVATBffOnlineTest.php | 2 +- tests/Api/EUVAT/EUVATViesTest.php | 2 +- tests/Application/ApplicationAbstractTest.php | 4 +- tests/Application/ApplicationInfoTest.php | 10 +- tests/Application/ApplicationManagerTest.php | 24 +-- tests/Application/InstallerAbstractTest.php | 2 +- tests/Application/StatusAbstractTest.php | 2 +- tests/Application/UninstallerAbstractTest.php | 2 +- tests/AutoloadExceptionTest.php | 2 +- tests/AutoloaderTest.php | 10 +- .../Business/Finance/FinanceFormulasTest.php | 84 +++++----- .../Cache/Connection/FileCacheTest.php | 42 ++--- .../Cache/Connection/MemCachedTest.php | 36 ++-- .../Cache/Connection/NullCacheTest.php | 2 +- .../Cache/Connection/RedisCacheTest.php | 36 ++-- .../InvalidConnectionConfigExceptionTest.php | 2 +- .../Connection/ConnectionFactoryTest.php | 10 +- .../Connection/MysqlConnectionTest.php | 18 +- .../Connection/NullConnectionTest.php | 2 +- .../Connection/PostgresConnectionTest.php | 18 +- .../Connection/SQLiteConnectionTest.php | 10 +- .../Connection/SqlServerConnectionTest.php | 18 +- .../Database/DataMapperAbstractTest.php | 72 ++++---- .../InvalidConnectionConfigExceptionTest.php | 2 +- .../InvalidDatabaseTypeExceptionTest.php | 2 +- .../Exception/InvalidMapperExceptionTest.php | 2 +- .../Query/Grammar/OracleGrammarTest.php | 2 +- .../Query/Grammar/PostgresGrammarTest.php | 2 +- .../Query/Grammar/SqlServerGrammarTest.php | 2 +- .../DataStorage/Database/Query/WhereTest.php | 2 +- .../Database/Schema/BuilderTest.php | 2 +- .../Schema/Grammar/MysqlGrammarTest.php | 8 +- .../Schema/Grammar/OracleGrammarTest.php | 2 +- .../Schema/Grammar/PostgresGrammarTest.php | 2 +- .../Schema/Grammar/SqlServerGrammarTest.php | 2 +- .../DataStorage/Database/SchemaMapperTest.php | 4 +- tests/DataStorage/LockExceptionTest.php | 2 +- tests/Dispatcher/DispatcherTest.php | 20 +-- tests/Event/EventManagerTest.php | 36 ++-- tests/Image/KernelTest.php | 2 +- tests/Image/SkewTest.php | 2 +- tests/Image/ThresholdingTest.php | 2 +- .../Localization/Defaults/CityMapperTest.php | 2 +- tests/Localization/Defaults/CityTest.php | 2 +- .../Defaults/CountryMapperTest.php | 2 +- tests/Localization/Defaults/CountryTest.php | 2 +- .../Defaults/CurrencyMapperTest.php | 2 +- tests/Localization/Defaults/CurrencyTest.php | 2 +- .../Localization/Defaults/IbanMapperTest.php | 2 +- tests/Localization/Defaults/IbanTest.php | 2 +- .../Defaults/LanguageMapperTest.php | 2 +- tests/Localization/Defaults/LanguageTest.php | 2 +- tests/Localization/L11nManagerTest.php | 18 +- tests/Localization/LocalizationTest.php | 48 +++--- tests/Log/FileLoggerTest.php | 30 ++-- .../Exception/ZeroDevisionExceptionTest.php | 2 +- tests/Math/Functions/AlgebraTest.php | 5 +- tests/Math/Functions/BetaTest.php | 8 +- tests/Math/Functions/FibonacciTest.php | 8 +- tests/Math/Functions/FunctionsTest.php | 20 +-- tests/Math/Functions/GammaTest.php | 18 +- .../Geometry/ConvexHull/GrahamScanTest.php | 2 +- .../Geometry/ConvexHull/MonotoneChainTest.php | 2 +- tests/Math/Geometry/Shape/D2/CircleTest.php | 8 +- tests/Math/Geometry/Shape/D2/EllipseTest.php | 4 +- tests/Math/Geometry/Shape/D2/PolygonTest.php | 16 +- .../Geometry/Shape/D2/QuadrilateralTest.php | 2 +- .../Math/Geometry/Shape/D2/RectangleTest.php | 6 +- .../Math/Geometry/Shape/D2/TrapezoidTest.php | 8 +- tests/Math/Geometry/Shape/D2/TriangleTest.php | 8 +- tests/Math/Geometry/Shape/D3/ConeTest.php | 8 +- tests/Math/Geometry/Shape/D3/CuboidTest.php | 4 +- tests/Math/Geometry/Shape/D3/CylinderTest.php | 6 +- tests/Math/Geometry/Shape/D3/PrismTest.php | 6 +- .../Shape/D3/RectangularPyramidTest.php | 6 +- tests/Math/Geometry/Shape/D3/SphereTest.php | 12 +- .../Geometry/Shape/D3/TetrahedronTest.php | 6 +- .../Math/Matrix/CholeskyDecompositionTest.php | 10 +- .../Matrix/EigenvalueDecompositionTest.php | 28 ++-- .../InvalidDimensionExceptionTest.php | 2 +- tests/Math/Matrix/IdentityMatrixTest.php | 2 +- tests/Math/Matrix/LUDecompositionTest.php | 18 +- tests/Math/Matrix/MatrixTest.php | 48 +++--- tests/Math/Matrix/QRDecompositionTest.php | 10 +- tests/Math/Matrix/VectorTest.php | 6 +- tests/Math/Number/ComplexTest.php | 32 ++-- tests/Math/Number/IntegerTest.php | 12 +- tests/Math/Number/NaturalTest.php | 2 +- tests/Math/Number/NumbersTest.php | 8 +- tests/Math/Number/PrimeTest.php | 10 +- tests/Math/Numerics/IntegrationTest.php | 10 +- .../CubicSplineInterpolationTest.php | 6 +- .../LagrangeInterpolationTest.php | 2 +- .../Interpolation/LinearInterpolationTest.php | 2 +- tests/Math/Parser/EvaluatorTest.php | 4 +- tests/Math/Statistic/AverageTest.php | 36 ++-- tests/Math/Statistic/BasicTest.php | 2 +- tests/Math/Statistic/Forecast/ErrorTest.php | 22 +-- .../Statistic/MeasureOfDispersionTest.php | 32 ++-- .../BernoulliDistributionTest.php | 26 +-- .../Distribution/BetaDistributionTest.php | 18 +- .../Distribution/BinomialDistributionTest.php | 22 +-- .../Distribution/CauchyDistributionTest.php | 8 +- .../ChiSquaredDistributionTest.php | 32 ++-- .../ExponentialDistributionTest.php | 22 +-- .../Distribution/FDistributionTest.php | 14 +- .../Distribution/GammaDistributionTest.php | 36 ++-- .../GeometricDistributionTest.php | 20 +-- .../HypergeometricDistributionTest.php | 16 +- .../Distribution/LaplaceDistributionTest.php | 22 +-- .../Distribution/LogDistributionTest.php | 14 +- .../LogNormalDistributionTest.php | 22 +-- .../Distribution/LogisticDistributionTest.php | 20 +-- .../Distribution/NormalDistributionTest.php | 26 +-- .../Distribution/ParetoDistributionTest.php | 22 +-- .../Distribution/PoissonDistributionTest.php | 22 +-- .../Distribution/TDistributionTest.php | 16 +- .../UniformDistributionContinuousTest.php | 20 +-- .../UniformDistributionDiscreteTest.php | 22 +-- .../Distribution/WeibullDistributionTest.php | 18 +- .../Stochastic/Distribution/ZTestingTest.php | 6 +- tests/Math/Topology/Metrics2DTest.php | 24 +-- tests/Math/Topology/MetricsNDTest.php | 36 ++-- tests/Message/Cli/CliHeaderTest.php | 20 +-- tests/Message/Cli/CliRequestTest.php | 22 +-- tests/Message/Cli/CliResponseTest.php | 12 +- tests/Message/HeaderAbstractTest.php | 2 +- tests/Message/Http/HttpHeaderTest.php | 28 ++-- tests/Message/Http/HttpRequestTest.php | 64 +++---- tests/Message/Http/HttpResponseTest.php | 24 +-- tests/Message/Http/RestTest.php | 14 +- tests/Message/RequestAbstractTest.php | 6 +- tests/Message/ResponseAbstractTest.php | 16 +- tests/Model/Html/FormElementGeneratorTest.php | 28 ++-- tests/Model/Html/HeadTest.php | 16 +- tests/Model/Html/MetaTest.php | 18 +- tests/Model/Message/DomTest.php | 4 +- tests/Model/Message/FormValidationTest.php | 4 +- tests/Model/Message/NotifyTest.php | 4 +- tests/Model/Message/RedirectTest.php | 4 +- tests/Model/Message/ReloadTest.php | 4 +- .../Exception/InvalidModuleExceptionTest.php | 2 +- .../Exception/InvalidThemeExceptionTest.php | 2 +- tests/Module/InstallerAbstractTest.php | 2 +- tests/Module/ModuleAbstractTest.php | 30 ++-- tests/Module/ModuleInfoTest.php | 10 +- tests/Module/ModuleManagerTest.php | 48 +++--- tests/Module/NullModuleTest.php | 4 +- tests/Module/PackageManagerTest.php | 12 +- tests/Module/StatusAbstractTest.php | 2 +- tests/Module/UninstallerAbstractTest.php | 2 +- tests/PreloaderTest.php | 2 +- tests/Router/SocketRouterTest.php | 22 +-- tests/Router/WebRouterTest.php | 28 ++-- tests/Security/GuardTest.php | 2 +- tests/Security/PhpCodeTest.php | 18 +- tests/Socket/Client/ClientTest.php | 2 +- .../Client/NullClientConnectionTest.php | 2 +- tests/Socket/Server/ServerTest.php | 2 +- tests/Stdlib/Base/AddressTest.php | 8 +- tests/Stdlib/Base/EnumArrayTest.php | 18 +- tests/Stdlib/Base/EnumTest.php | 24 +-- .../Base/Exception/InvalidEnumNameTest.php | 2 +- .../Base/Exception/InvalidEnumValueTest.php | 2 +- tests/Stdlib/Base/HeapTest.php | 32 ++-- tests/Stdlib/Base/IbanTest.php | 10 +- tests/Stdlib/Base/LocationTest.php | 18 +- tests/Stdlib/Base/NullLocationTest.php | 2 +- tests/Stdlib/Base/SmartDateTimeTest.php | 32 ++-- tests/Stdlib/Graph/EdgeTest.php | 8 +- tests/Stdlib/Graph/GraphTest.php | 58 +++---- tests/Stdlib/Graph/NodeTest.php | 18 +- tests/Stdlib/Map/MultiMapTest.php | 86 +++++----- tests/Stdlib/Queue/PriorityQueueTest.php | 32 ++-- tests/System/File/FileUtilsTest.php | 10 +- tests/System/File/Ftp/DirectoryTest.php | 132 +++++++-------- tests/System/File/Ftp/FileTest.php | 132 +++++++-------- tests/System/File/Ftp/FtpStorageTest.php | 158 +++++++++--------- .../File/Ftp/newdirtest/sub/path/test3.txt | 1 + .../System/File/Ftp/newdirtest/sub/test2.txt | 1 + tests/System/File/Ftp/newdirtest/sub/test4.md | 0 tests/System/File/Ftp/newdirtest/test.txt | 1 + tests/System/File/Local/DirectoryTest.php | 124 +++++++------- tests/System/File/Local/FileTest.php | 130 +++++++------- tests/System/File/Local/LocalStorageTest.php | 158 +++++++++--------- tests/System/File/PathExceptionTest.php | 2 +- tests/System/File/PermissionExceptionTest.php | 2 +- tests/System/File/StorageTest.php | 10 +- tests/System/MimeTypeTest.php | 4 +- tests/System/OperatingSystemTest.php | 2 +- tests/System/Search/StringSearchTest.php | 12 +- tests/System/SystemUtilsTest.php | 4 +- tests/UnhandledHandlerTest.php | 5 +- tests/Uri/ArgumentTest.php | 20 +-- tests/Uri/HttpUriTest.php | 42 ++--- tests/Uri/InvalidUriExceptionTest.php | 2 +- tests/Uri/UriFactoryTest.php | 32 ++-- tests/Utils/ArrayUtilsTest.php | 38 ++--- tests/Utils/Barcode/BarAbstractTest.php | 8 +- tests/Utils/Barcode/C128aTest.php | 8 +- tests/Utils/Barcode/C128bTest.php | 8 +- tests/Utils/Barcode/C128cTest.php | 6 +- tests/Utils/Barcode/C25Test.php | 10 +- tests/Utils/Barcode/C39Test.php | 8 +- tests/Utils/Barcode/CodebarTest.php | 8 +- tests/Utils/Barcode/DatamatrixTest.php | 4 +- tests/Utils/Barcode/QRTest.php | 4 +- tests/Utils/Barcode/datamatrix.jpg | Bin 9016 -> 8970 bytes tests/Utils/Barcode/datamatrix.png | Bin 289 -> 293 bytes tests/Utils/ColorUtilsTest.php | 4 +- tests/Utils/Compression/LZWTest.php | 2 +- tests/Utils/Converter/CurrencyTest.php | 12 +- tests/Utils/Converter/FileSizeTypeTest.php | 2 +- tests/Utils/Converter/FileTest.php | 4 +- tests/Utils/Converter/IpTest.php | 2 +- tests/Utils/Converter/MeasurementTest.php | 66 ++++---- tests/Utils/Converter/NumericTest.php | 10 +- tests/Utils/Encoding/CaesarTest.php | 2 +- tests/Utils/Encoding/GrayTest.php | 2 +- .../Utils/Encoding/Huffman/DictionaryTest.php | 10 +- tests/Utils/Encoding/XorEncodingTest.php | 2 +- tests/Utils/Git/AuthorTest.php | 10 +- tests/Utils/Git/BranchTest.php | 4 +- tests/Utils/Git/CommitTest.php | 26 +-- tests/Utils/Git/GitTest.php | 2 +- tests/Utils/Git/RepositoryTest.php | 2 +- tests/Utils/Git/TagTest.php | 6 +- tests/Utils/IO/Csv/CsvSettingsTest.php | 4 +- .../IO/Json/InvalidJsonExceptionTest.php | 2 +- .../SpreadsheetDatabaseMapperTest.php | 18 +- tests/Utils/IO/Zip/GzTest.php | 8 +- tests/Utils/IO/Zip/TarGzTest.php | 8 +- tests/Utils/IO/Zip/TarTest.php | 10 +- tests/Utils/IO/Zip/ZipTest.php | 12 +- tests/Utils/ImageUtilsTest.php | 4 +- tests/Utils/MbStringUtilsTest.php | 24 +-- tests/Utils/NumericUtilsTest.php | 2 +- tests/Utils/Parser/Markdown/MarkdownTest.php | 2 +- tests/Utils/Parser/Php/ArrayParserTest.php | 4 +- tests/Utils/PermutationTest.php | 10 +- tests/Utils/RnG/ArrayRandomizeTest.php | 4 +- tests/Utils/RnG/DateTimeTest.php | 2 +- tests/Utils/RnG/FileTest.php | 2 +- .../RnG/LinearCongruentialGeneratorTest.php | 12 +- tests/Utils/RnG/NameTest.php | 2 +- tests/Utils/RnG/PhoneTest.php | 2 +- tests/Utils/RnG/StringUtilsTest.php | 2 +- tests/Utils/RnG/TextTest.php | 2 +- tests/Utils/StringCompareTest.php | 12 +- tests/Utils/StringUtilsTest.php | 22 +-- tests/Utils/TaskSchedule/CronJobTest.php | 4 +- tests/Utils/TaskSchedule/CronTest.php | 12 +- tests/Utils/TaskSchedule/IntervalTest.php | 34 ++-- tests/Utils/TaskSchedule/ScheduleTest.php | 4 +- .../TaskSchedule/SchedulerAbstractTest.php | 4 +- .../TaskSchedule/SchedulerFactoryTest.php | 2 +- tests/Utils/TaskSchedule/TaskAbstractTest.php | 12 +- tests/Utils/TaskSchedule/TaskFactoryTest.php | 2 +- .../Utils/TaskSchedule/TaskSchedulerTest.php | 12 +- tests/Utils/TestUtilsTest.php | 8 +- tests/Utils/img/logo_resized.png | Bin 54915 -> 29539 bytes tests/Validation/Base/DateTimeTest.php | 2 +- tests/Validation/Base/JsonTest.php | 12 +- tests/Validation/Finance/BICTest.php | 2 +- tests/Validation/Finance/CreditCardTest.php | 4 +- tests/Validation/Finance/IbanTest.php | 2 +- tests/Validation/Network/EmailTest.php | 2 +- tests/Validation/Network/HostnameTest.php | 4 +- tests/Validation/Network/IpTest.php | 6 +- tests/Validation/ValidatorTest.php | 20 +-- tests/Version/VersionTest.php | 2 +- tests/Views/PaginationViewTest.php | 10 +- tests/Views/ViewTest.php | 62 +++---- 306 files changed, 2164 insertions(+), 2157 deletions(-) create mode 100644 tests/System/File/Ftp/newdirtest/sub/path/test3.txt create mode 100644 tests/System/File/Ftp/newdirtest/sub/test2.txt create mode 100644 tests/System/File/Ftp/newdirtest/sub/test4.md create mode 100644 tests/System/File/Ftp/newdirtest/test.txt 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 506195b7310ba5cb27d1db98d89d2b736e0d905e..154345e947aacc34403fe7e44a5b54720f75be27 100644 GIT binary patch delta 5845 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 delta 5715 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 Y0Ki_5H*0HloB#j-07*qoM6N<$f-lTqasU7T 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 31a4f5706e09d7af745e90730490942de1b68f42..6f602362dca8032ee513db229c2f803e71532f3c 100644 GIT binary patch literal 29539 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 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