How to use testLtrim method of StringUtilsTest class

Best Cucumber Common Library code snippet using StringUtilsTest.testLtrim

reportLang.php

Source:reportLang.php Github

copy

Full Screen

1<?php declare(strict_types=1);2return [3 // keys which start with `:` are considered localized strings used in the template not for the report.4 ':status:1' => 'successful',5 ':status:0' => 'untested',6 ':status:-1' => 'skipped',7 ':status:-2' => 'warning',8 ':status:-3' => 'failure',9 ':status:-4' => 'error',10 // template language11 ':testreport' => 'Test Report',12 ':created' => 'Created',13 ':version' => 'Version',14 ':total' => 'Total',15 ':covered' => 'Covered',16 ':uncovered' => 'Uncovered',17 ':methods' => 'Methods',18 ':ratio' => 'Ratio',19 ':statements' => 'Statements',20 ':conditionals' => 'Conditionals',21 ':successful' => 'Successful',22 ':skipps' => 'Skipps',23 ':errors' => 'Errors',24 ':warnings' => 'Warnings',25 ':failures' => 'Failures',26 ':description' => 'Description',27 ':introduction' => 'Introduction',28 ':introduction_desc_1' => 'This test report is automatically generated and includes information automatically generated by standard testing tools as well as custom tools in order to test and report the correctness as well as the quality of the software.',29 ':structure' => 'Table of Contents',30 ':structure_link_1' => 'Introduction',31 ':structure_link_2' => 'Table of Contents',32 ':structure_link_3' => 'Objective',33 ':structure_link_4' => 'Testing Process',34 ':structure_link_5' => 'Testing Summary',35 ':structure_link_6' => 'Tests',36 ':structure_link_9' => 'Disclaimer',37 ':objective' => 'Objective',38 ':objective_desc_1' => 'The objective of this report is to provide important information to users and auditors in order to check and re-validate the correctness and quality of the tested software. In this automatically generated report you can confirm if the functionality of the tested software is ensured. This is especially important and helpful for software updates and major version changes. By providing these test reports we hope to help customers, partners and auditors with their software validation processes due to internal or external requirements.',39 ':testing_description' => 'Description',40 ':testing_process' => 'Testing Process',41 ':testing_process_desc_1' => 'Our goal is to provide as many and comprehensive tests as possible in order to ensure risks As Low As Reasonably Possible (ALARP). The tests we create can be categorized into multiple non-exclusive categories such as:',42 ':testing_process_list_1' => 'Unit Tests vs. Integration Tests vs. System Tests vs. Static Tests vs. Code Style',43 ':testing_process_list_2' => 'Frontend vs. Backend',44 ':testing_process_list_3' => 'Internal vs. 3rd Party',45 ':testing_process_list_4' => 'Framework vs. Library vs. Module',46 ':testing_process_list_5' => 'Environment dependent vs. Environment independent',47 ':testing_process_desc_2' => 'In addition to these functional tests we also do performance analysis of critical components. In addition to these automated tests we also do manual tests which are not included in this report during the development process and testing environments. New tests are constantly added and old tests are improved if applicable. In case tests become redundant or no longer provide any benefit due to software changes we may remove them.',48 ':testing_process_desc_3' => 'The testing rulesets can be found at:',49 ':testing_process_rules_1' => '<a href="https://github.com/Karaka-Management/Karaka/blob/8f0a3a1cd8e753481f2ab6c7f2dcd78b85e41922/tests/phpunit_default.xml">PhpUnit</a>',50 ':testing_process_rules_2' => '<a href="https://github.com/Karaka-Management/Build/blob/f1c3abe2db03ec112075574c1419ee547e5f7c13/Config/phpcs.xml">PhpCS</a>',51 ':testing_process_rules_3' => '<a href="https://github.com/Karaka-Management/Build/blob/f1c3abe2db03ec112075574c1419ee547e5f7c13/Config/phpstan.neon">PhpStan</a> and <a href="https://github.com/Karaka-Management/Build/blob/f1c3abe2db03ec112075574c1419ee547e5f7c13/Config/phpstan-baseline.neon">Baseline</a>',52 ':testing_process_rules_4' => '<a href="https://github.com/Karaka-Management/Build/blob/f1c3abe2db03ec112075574c1419ee547e5f7c13/Config/.eslintrc.jsonl">Eslint</a>',53 ':testing_summary' => 'Testing Summary',54 ':testing_summary_coverage' => 'Coverage',55 ':testing_summary_tests' => 'Tests',56 ':testing_summary_desc_1' => 'This section contains a brief overview about the testing results.',57 ':testing_summary_desc_2' => 'Total amount of assertions:',58 ':testing_summary_desc_3' => 'Total testing time:',59 ':tests' => 'Tests',60 ':test_suits' => 'Test Suits',61 ':static_tests' => 'Static Tests',62 ':code_style' => 'Code Style',63 ':disclaimer' => 'Disclaimer',64 ':disclaimer_desc_1' => 'This test report doesn\'t provide any legal warrenty over completeness and correctness in case of damages of any kind.',65 // report elements come below / the order is important and is the same as in the generated report.66 'phpOMS\tests\Account\AccountManagerTest' => ['description' => 'Account/user manager to handle/access loaded accounts', 'type' => 'framework'],67 'phpOMS\tests\Account\AccountManagerTest:testAttributes' => ['description' => 'The manager has the expected member variables', 'type' => 'framework'],68 'phpOMS\tests\Account\AccountManagerTest:testDefault' => ['description' => 'The manager has the expected default values after initialization', 'type' => 'framework'],69 'phpOMS\tests\Account\AccountManagerTest:testAddAccount' => ['description' => 'An account can be added to the manager', 'type' => 'framework'],70 'phpOMS\tests\Account\AccountManagerTest:testRetrieveAccount' => ['description' => 'An account can be retrieved from the manager', 'type' => 'framework'],71 'phpOMS\tests\Account\AccountManagerTest:testNoAccountDuplication' => ['description' => 'An account can only be added once to the account manager (no duplication)', 'type' => 'framework'],72 'phpOMS\tests\Account\AccountManagerTest:testRemoveAccount' => ['description' => 'An account can be removed from the account manager', 'type' => 'framework'],73 'phpOMS\tests\Account\AccountManagerTest:testRemoveOnlyValidAccount' => ['description' => 'Only a valid account can be removed from the manager', 'type' => 'framework'],74 'phpOMS\tests\Account\AccountTest' => ['description' => 'Base account/user representation', 'type' => 'framework'],75 'phpOMS\tests\Account\AccountTest:testAttributes' => ['description' => 'The account has the expected member variables', 'type' => 'framework'],76 'phpOMS\tests\Account\AccountTest:testDefault' => ['description' => 'The account has the expected default values after initialization', 'type' => 'framework'],77 'phpOMS\tests\Account\AccountTest:testSetAndGetAccountNames' => ['description' => 'The account names can be set and retrieved correctly', 'type' => 'framework'],78 'phpOMS\tests\Account\AccountTest:testAddAndGetGroup' => ['description' => 'Groups can be added to an account', 'type' => 'framework'],79 'phpOMS\tests\Account\AccountTest:testSetAndGetAccountEmail' => ['description' => 'An account can have a valid email address', 'type' => 'framework'],80 'phpOMS\tests\Account\AccountTest:testChangeStatus' => ['description' => 'The default status of the account can be changed to a different valid status', 'type' => 'framework'],81 'phpOMS\tests\Account\AccountTest:testChangeType' => ['description' => 'The default type of the account can be changed to a different valid type', 'type' => 'framework'],82 'phpOMS\tests\Account\AccountTest:testPermissionAdd' => ['description' => 'Account permissions can be added', 'type' => 'framework'],83 'phpOMS\tests\Account\AccountTest:testPermissionExists' => ['description' => 'Account permissions can be checked for existence', 'type' => 'framework'],84 'phpOMS\tests\Account\AccountTest:testLocalization' => ['description' => 'An account can have it\'s own localization', 'type' => 'framework'],85 'phpOMS\tests\Account\AccountTest:testLastChange' => ['description' => 'An account \'last activity\' timestamp can be updated and retrieved', 'type' => 'framework'],86 'phpOMS\tests\Account\AccountTest:testEmailException' => ['description' => 'An account can only have a valid email', 'type' => 'framework'],87 'phpOMS\tests\Account\AccountTest:testStatusException' => ['description' => 'An account can only have valid account status', 'type' => 'framework'],88 'phpOMS\tests\Account\AccountTest:testTypeException' => ['description' => 'An account can only have valid account types', 'type' => 'framework'],89 'phpOMS\tests\Account\GroupTest' => ['description' => 'Base group representation', 'type' => 'framework'],90 'phpOMS\tests\Account\GroupTest:testAttributes' => ['description' => 'The group has the expected member variables', 'type' => 'framework'],91 'phpOMS\tests\Account\GroupTest:testDefault' => ['description' => 'The group has the expected default values after initialization', 'type' => 'framework'],92 'phpOMS\tests\Account\GroupTest:testSetAndGetGroupNameDescription' => ['description' => 'The group name and description can be set and retrieved correctly', 'type' => 'framework'],93 'phpOMS\tests\Account\GroupTest:testPermissionAdd' => ['description' => 'Group permissions can be added', 'type' => 'framework'],94 'phpOMS\tests\Account\GroupTest:testPermissionExists' => ['description' => 'Group permissions can be checked for existence', 'type' => 'framework'],95 'phpOMS\tests\Account\GroupTest:testPermissionRemove' => ['description' => 'Group permissions can be removed', 'type' => 'framework'],96 'phpOMS\tests\Account\GroupTest:testChangeStatus' => ['description' => 'The default status of the group can be changed to a different valid status', 'type' => 'framework'],97 'phpOMS\tests\Account\GroupTest:testStatusException' => ['description' => 'A group can only have valid group status', 'type' => 'framework'],98 'phpOMS\tests\Account\PermissionAbstractTest' => ['description' => 'Base permission representation', 'type' => 'framework'],99 'phpOMS\tests\Account\PermissionAbstractTest:testAbstractDefault' => ['description' => 'The permission has the expected default values after initialization', 'type' => 'framework'],100 'phpOMS\tests\Account\PermissionAbstractTest:testUnitInputOutput' => ['description' => 'The unit can be set and returned correctly', 'type' => 'framework'],101 'phpOMS\tests\Account\PermissionAbstractTest:testAppInputOutput' => ['description' => 'The app can be set and returned correctly', 'type' => 'framework'],102 'phpOMS\tests\Account\PermissionAbstractTest:testModuleInputOutput' => ['description' => 'The module can be set and returned correctly', 'type' => 'framework'],103 'phpOMS\tests\Account\PermissionAbstractTest:testFromInputOutput' => ['description' => 'The from can be set and returned correctly', 'type' => 'framework'],104 'phpOMS\tests\Account\PermissionAbstractTest:testTypeInputOutput' => ['description' => 'The type can be set and returned correctly', 'type' => 'framework'],105 'phpOMS\tests\Account\PermissionAbstractTest:testElementInputOutput' => ['description' => 'The element can be set and returned correctly', 'type' => 'framework'],106 'phpOMS\tests\Account\PermissionAbstractTest:testComponentInputOutput' => ['description' => 'The component can be set and returned correctly', 'type' => 'framework'],107 'phpOMS\tests\Account\PermissionAbstractTest:testPermissionInputOutput' => ['description' => 'The permission can be set and returned correctly', 'type' => 'framework'],108 'phpOMS\tests\Account\PermissionAbstractTest:testEqualPermissions' => ['description' => 'Two permissions can be checked for equality', 'type' => 'framework'],109 'phpOMS\tests\Account\PermissionAbstractTest:testValidPermission' => ['description' => 'Correct permissions are validated', 'type' => 'framework'],110 'phpOMS\tests\Account\PermissionAbstractTest:testInvalidPermission' => ['description' => 'Invalid permissions are not validated', 'type' => 'framework'],111 'phpOMS\tests\Account\PermissionAbstractTest:testValidPermissionFlag' => ['description' => 'Correct permission flags are validated', 'type' => 'framework'],112 'phpOMS\tests\Account\PermissionAbstractTest:testInvalidPermissionFlag' => ['description' => 'Invalid permission flags are not validated', 'type' => 'framework'],113 'phpOMS\tests\Algorithm\Clustering\KmeansTest' => ['description' => 'Clustering points/elements with the K-means algorithm', 'type' => 'framework'],114 'phpOMS\tests\Algorithm\Clustering\KmeansTest:testKmeans' => ['description' => 'The clustering of points and dynamic check of new points works as expected', 'type' => 'framework'],115 'phpOMS\tests\Algorithm\Clustering\PointTest' => ['description' => 'Default point in a cluster', 'type' => 'framework'],116 'phpOMS\tests\Algorithm\Clustering\PointTest:testCoordinateInputOutput' => ['description' => 'Coordinates of a point can be set and returned', 'type' => 'framework'],117 'phpOMS\tests\Algorithm\Clustering\PointTest:testGroupInputOutput' => ['description' => 'The group/cluster of a point can be set and returned', 'type' => 'framework'],118 'phpOMS\tests\Algorithm\Clustering\PointTest:testNameInputOutput' => ['description' => 'The name of a point can be set and returned', 'type' => 'framework'],119 'phpOMS\tests\Algorithm\CoinMatching\MinimumCoinProblemTest' => ['description' => 'Match a value by using the minimum quantity of available sub values (Minimum Coin Problem)', 'type' => 'framework'],120 'phpOMS\tests\Algorithm\CoinMatching\MinimumCoinProblemTest:testMinimumCoins' => ['description' => 'A value is matched with the minimum quantity of available coins.', 'type' => 'framework'],121 'phpOMS\tests\Algorithm\JobScheduling\WeightedTest' => ['description' => 'Job scheduling based on values/profit', 'type' => 'framework'],122 'phpOMS\tests\Algorithm\JobScheduling\WeightedTest:testNoOverlappingScheduling' => ['description' => 'The optimal job combination is selected to maximize the value/profit without overlapping jobs', 'type' => 'framework'],123 'phpOMS\tests\Algorithm\JobScheduling\WeightedTest:testSmallList' => ['description' => 'A job list with only one job simply returns one job', 'type' => 'framework'],124 'phpOMS\tests\Algorithm\JobScheduling\JobTest' => ['description' => 'Default job for the job scheduling', 'type' => 'framework'],125 'phpOMS\tests\Algorithm\JobScheduling\JobTest:testDefault' => ['description' => 'The job has the expected values after initialization', 'type' => 'framework'],126 'phpOMS\tests\Algorithm\Knapsack\BoundedTest' => ['description' => 'A Knapsack implementation for discrete quantities, values and costs and bounded item quantities', 'type' => 'framework'],127 'phpOMS\tests\Algorithm\Knapsack\BoundedTest:testBackpacking' => ['description' => 'The optimal item selection in a backpack is calculated in order to optimize the value/profit while considering the available capacity/cost limit', 'type' => 'framework'],128 'phpOMS\tests\Algorithm\Knapsack\ContinuousTest' => ['description' => 'A Knapsack implementation for continuous quantities, values and costs', 'type' => 'framework'],129 'phpOMS\tests\Algorithm\Knapsack\ContinuousTest:testBackpacking' => ['description' => '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]', 'type' => 'framework'],130 'phpOMS\tests\Algorithm\Knapsack\ContinuousTest:testBackpackingAlternative' => ['description' => '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]', 'type' => 'framework'],131 'phpOMS\tests\Algorithm\Knapsack\BackpackTest' => ['description' => 'The default backpack or basket which holds all items for the Knapsack algorithm', 'type' => 'framework'],132 'phpOMS\tests\Algorithm\Knapsack\BackpackTest:testDefault' => ['description' => 'The backpack has the expected values after initialization', 'type' => 'framework'],133 'phpOMS\tests\Algorithm\Knapsack\BackpackTest:testAddItems' => ['description' => 'Items can be added to the backpack and automatically change the value and cost the backpack contains', 'type' => 'framework'],134 'phpOMS\tests\Algorithm\Knapsack\ItemTest' => ['description' => 'The default item to be added to the backpack or basket', 'type' => 'framework'],135 'phpOMS\tests\Algorithm\Knapsack\ItemTest:testDefault' => ['description' => 'The item has the expected values after initialization', 'type' => 'framework'],136 'phpOMS\tests\Algorithm\Maze\MazeGeneratorTest' => ['description' => 'Maze generation', 'type' => 'framework'],137 'phpOMS\tests\Algorithm\Maze\MazeGeneratorTest:testMazeGeneration' => ['description' => 'A random maze can be generated', 'type' => 'framework'],138 'phpOMS\tests\Algorithm\Maze\MazeGeneratorTest:testMazeRender' => ['description' => 'A random maze can be rendered', 'type' => 'framework'],139 'phpOMS\tests\Algorithm\PathFinding\AStarTest' => ['description' => 'AStar path finding', 'type' => 'framework'],140 'phpOMS\tests\Algorithm\PathFinding\AStarTest:testPathFindingDiagonal' => ['description' => 'The correct path is found for diagonal movement', 'type' => 'framework'],141 'phpOMS\tests\Algorithm\PathFinding\AStarTest:testPathFindingStraight' => ['description' => 'The correct path is found for straight movement', 'type' => 'framework'],142 'phpOMS\tests\Algorithm\PathFinding\AStarTest:testPathFindingDiagonalOneObstacle' => ['description' => 'The correct path is found for diagonal movement [one obstacle]', 'type' => 'framework'],143 'phpOMS\tests\Algorithm\PathFinding\AStarTest:testPathFindingDiagonalNoObstacle' => ['description' => 'The correct path is found for diagonal movement [no obstacle]', 'type' => 'framework'],144 'phpOMS\tests\Algorithm\PathFinding\JumpPointSearchTest' => ['description' => 'JumpPoint path finding', 'type' => 'framework'],145 'phpOMS\tests\Algorithm\PathFinding\JumpPointSearchTest:testPathFindingDiagonal' => ['description' => 'The correct path is found for diagonal movement', 'type' => 'framework'],146 'phpOMS\tests\Algorithm\PathFinding\JumpPointSearchTest:testPathFindingStraight' => ['description' => 'The correct path is found for straight movement', 'type' => 'framework'],147 'phpOMS\tests\Algorithm\PathFinding\JumpPointSearchTest:testPathFindingDiagonalOneObstacle' => ['description' => 'The correct path is found for diagonal movement [one obstacle]', 'type' => 'framework'],148 'phpOMS\tests\Algorithm\PathFinding\JumpPointSearchTest:testPathFindingDiagonalNoObstacle' => ['description' => 'The correct path is found for diagonal movement [no obstacle]', 'type' => 'framework'],149 'phpOMS\tests\Algorithm\PathFinding\GridTest' => ['description' => 'Grid for path finding', 'type' => 'framework'],150 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDefault' => ['description' => 'By default a grid is empty', 'type' => 'framework'],151 'phpOMS\tests\Algorithm\PathFinding\GridTest:testGridFromArray' => ['description' => 'A grid can be created from an array', 'type' => 'framework'],152 'phpOMS\tests\Algorithm\PathFinding\GridTest:testNodeInputOutput' => ['description' => 'A node can be set and returned from the grid', 'type' => 'framework'],153 'phpOMS\tests\Algorithm\PathFinding\GridTest:testOutOfBoundsNode' => ['description' => 'Out of bounds nodes cannot be returned', 'type' => 'framework'],154 'phpOMS\tests\Algorithm\PathFinding\GridTest:testStraightHorizontalNeighbors' => ['description' => 'All horizontal neighbors can be found correctly', 'type' => 'framework'],155 'phpOMS\tests\Algorithm\PathFinding\GridTest:testStraightVerticalNeighbors' => ['description' => 'All vertical neighbors can be found correctly', 'type' => 'framework'],156 'phpOMS\tests\Algorithm\PathFinding\GridTest:testStraightNoneNeighbors' => ['description' => 'No straight neighbors are found if no straight neighbors exist', 'type' => 'framework'],157 'phpOMS\tests\Algorithm\PathFinding\GridTest:testStraightAllNeighbors' => ['description' => 'All straight neighbors can be found correctly', 'type' => 'framework'],158 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalLRNeighbors' => ['description' => 'All neighbors except blocked diagonal neighbors can be found correctly', 'type' => 'framework'],159 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalURNeighbors' => ['description' => 'All neighbors except blocked diagonal neighbors can be found correctly', 'type' => 'framework'],160 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalNoneNeighbors' => ['description' => 'No diagonal neighbors are found if no neighbors exist', 'type' => 'framework'],161 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalOnlyNeighbors' => ['description' => 'All diagonal neighbors can be found correctly', 'type' => 'framework'],162 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalAllNeighbors' => ['description' => 'All neighbors can be found correctly', 'type' => 'framework'],163 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalOneObstacleNoBlockNeighbors' => ['description' => 'All neighbors can be found correctly even if one obstacle exists', 'type' => 'framework'],164 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalOneObstacleBlockNeighbors' => ['description' => 'No diagonal neighbors are found if they are blocked on two sides', 'type' => 'framework'],165 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalOneObstacleAllNeighbors' => ['description' => 'All neighbors can be found correctly if no obstacles exists', 'type' => 'framework'],166 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalNoObstacleBlockNeighbors' => ['description' => 'No diagonal neighbors are found if one obstacle exists', 'type' => 'framework'],167 'phpOMS\tests\Algorithm\PathFinding\GridTest:testDiagonalNoObstacleAllNeighbors' => ['description' => 'All neighbors can be found correctly if no obstacles exist', 'type' => 'framework'],168 'phpOMS\tests\Algorithm\PathFinding\HeuristicTest' => ['description' => 'Heuristic for path finding', 'type' => 'framework'],169 'phpOMS\tests\Algorithm\PathFinding\HeuristicTest:testHeuristics' => ['description' => 'The heuristics return the correct metric results', 'type' => 'framework'],170 'phpOMS\tests\Algorithm\PathFinding\NodeTest' => ['description' => 'Node on grid for path finding', 'type' => 'framework'],171 'phpOMS\tests\Algorithm\PathFinding\NodeTest:testDefault' => ['description' => 'The node has the expected values after initialization', 'type' => 'framework'],172 'phpOMS\tests\Algorithm\PathFinding\NodeTest:testNodesWithEqualCoordinatesAreEqual' => ['description' => 'Nodes with equal coordinates are equal', 'type' => 'framework'],173 'phpOMS\tests\Algorithm\PathFinding\NodeTest:testNodesWithDifferentCoordinatesAreNotEqual' => ['description' => 'Nodes with different coordinates are not equal', 'type' => 'framework'],174 'phpOMS\tests\Algorithm\PathFinding\NodeTest:testParentInputOutput' => ['description' => 'A parent node can be set and returned', 'type' => 'framework'],175 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest' => ['description' => 'JumpPointNode on grid for path finding', 'type' => 'framework'],176 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testDefault' => ['description' => 'The node has the expected values after initialization', 'type' => 'framework'],177 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testClosedInputOutput' => ['description' => 'The node can be set closed and checked', 'type' => 'framework'],178 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testOpenedInputOutput' => ['description' => 'The node can be set opened and checked', 'type' => 'framework'],179 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testTestedInputOutput' => ['description' => 'The node can be set tested and checked', 'type' => 'framework'],180 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testGInputOutput' => ['description' => 'The g value cen be set and returned', 'type' => 'framework'],181 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testHInputOutput' => ['description' => 'The h value cen be set and returned', 'type' => 'framework'],182 'phpOMS\tests\Algorithm\PathFinding\JumpPointNodeTest:testFInputOutput' => ['description' => 'The f value cen be set and returned', 'type' => 'framework'],183 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest' => ['description' => 'JumpPointNode on grid for path finding', 'type' => 'framework'],184 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest:testDefault' => ['description' => 'The node has the expected values after initialization', 'type' => 'framework'],185 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest:testClosedInputOutput' => ['description' => 'The node can be set closed and checked', 'type' => 'framework'],186 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest:testOpenedInputOutput' => ['description' => 'The node can be set opened and checked', 'type' => 'framework'],187 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest:testGInputOutput' => ['description' => 'The g value cen be set and returned', 'type' => 'framework'],188 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest:testHInputOutput' => ['description' => 'The h value cen be set and returned', 'type' => 'framework'],189 'phpOMS\tests\Algorithm\PathFinding\AStarNodeTest:testFInputOutput' => ['description' => 'The f value cen be set and returned', 'type' => 'framework'],190 'phpOMS\tests\Algorithm\PathFinding\PathTest' => ['description' => 'Path on grid', 'type' => 'framework'],191 'phpOMS\tests\Algorithm\PathFinding\PathTest:testDefault' => ['description' => 'The path has the expected values after initialization', 'type' => 'framework'],192 'phpOMS\tests\Algorithm\PathFinding\PathTest:testDiagonalPathLength' => ['description' => 'The diagonal euclidean path length is calculated correctly', 'type' => 'framework'],193 'phpOMS\tests\Algorithm\PathFinding\PathTest:testStraightPathLength' => ['description' => 'The straight euclidean path length is calculated correctly', 'type' => 'framework'],194 'phpOMS\tests\Algorithm\PathFinding\PathTest:testPathExpansion' => ['description' => 'The path is correctly expanded in case only jump points are defined', 'type' => 'framework'],195 'phpOMS\tests\Algorithm\Sort\BitonicSortTest' => ['description' => 'Bitonic sort', 'type' => 'framework'],196 'phpOMS\tests\Algorithm\Sort\BitonicSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],197 'phpOMS\tests\Algorithm\Sort\BitonicSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],198 'phpOMS\tests\Algorithm\Sort\BitonicSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],199 'phpOMS\tests\Algorithm\Sort\BubbleSortTest' => ['description' => 'Bubble sort', 'type' => 'framework'],200 'phpOMS\tests\Algorithm\Sort\BubbleSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],201 'phpOMS\tests\Algorithm\Sort\BubbleSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],202 'phpOMS\tests\Algorithm\Sort\BubbleSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],203 'phpOMS\tests\Algorithm\Sort\BucketSortTest' => ['description' => 'Bucket sort', 'type' => 'framework'],204 'phpOMS\tests\Algorithm\Sort\BucketSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],205 'phpOMS\tests\Algorithm\Sort\BucketSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],206 'phpOMS\tests\Algorithm\Sort\BucketSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],207 'phpOMS\tests\Algorithm\Sort\BucketSortTest:testNoBuckets' => ['description' => 'If no buckets are specified the elements cannot be sorted and an empty result is returned', 'type' => 'framework'],208 'phpOMS\tests\Algorithm\Sort\CocktailShakerSortTest' => ['description' => 'CocktailShaker sort', 'type' => 'framework'],209 'phpOMS\tests\Algorithm\Sort\CocktailShakerSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],210 'phpOMS\tests\Algorithm\Sort\CocktailShakerSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],211 'phpOMS\tests\Algorithm\Sort\CocktailShakerSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],212 'phpOMS\tests\Algorithm\Sort\CombSortTest' => ['description' => 'Comb sort', 'type' => 'framework'],213 'phpOMS\tests\Algorithm\Sort\CombSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],214 'phpOMS\tests\Algorithm\Sort\CombSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],215 'phpOMS\tests\Algorithm\Sort\CombSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],216 'phpOMS\tests\Algorithm\Sort\CycleSortTest' => ['description' => 'Cycle sort', 'type' => 'framework'],217 'phpOMS\tests\Algorithm\Sort\CycleSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],218 'phpOMS\tests\Algorithm\Sort\CycleSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],219 'phpOMS\tests\Algorithm\Sort\CycleSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],220 'phpOMS\tests\Algorithm\Sort\GnomeSortTest' => ['description' => 'Gnome sort', 'type' => 'framework'],221 'phpOMS\tests\Algorithm\Sort\GnomeSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],222 'phpOMS\tests\Algorithm\Sort\GnomeSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],223 'phpOMS\tests\Algorithm\Sort\GnomeSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],224 'phpOMS\tests\Algorithm\Sort\HeapSortTest' => ['description' => 'Heap sort', 'type' => 'framework'],225 'phpOMS\tests\Algorithm\Sort\HeapSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],226 'phpOMS\tests\Algorithm\Sort\HeapSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],227 'phpOMS\tests\Algorithm\Sort\HeapSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],228 'phpOMS\tests\Algorithm\Sort\InsertionSortTest' => ['description' => 'Insertion sort', 'type' => 'framework'],229 'phpOMS\tests\Algorithm\Sort\InsertionSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],230 'phpOMS\tests\Algorithm\Sort\InsertionSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],231 'phpOMS\tests\Algorithm\Sort\InsertionSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],232 'phpOMS\tests\Algorithm\Sort\IntroSortTest' => ['description' => 'Intro sort', 'type' => 'framework'],233 'phpOMS\tests\Algorithm\Sort\IntroSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],234 'phpOMS\tests\Algorithm\Sort\IntroSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],235 'phpOMS\tests\Algorithm\Sort\IntroSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],236 'phpOMS\tests\Algorithm\Sort\MergeSortTest' => ['description' => 'Merge sort', 'type' => 'framework'],237 'phpOMS\tests\Algorithm\Sort\MergeSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],238 'phpOMS\tests\Algorithm\Sort\MergeSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],239 'phpOMS\tests\Algorithm\Sort\MergeSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],240 'phpOMS\tests\Algorithm\Sort\OddEvenSortTest' => ['description' => 'OddEven sort', 'type' => 'framework'],241 'phpOMS\tests\Algorithm\Sort\OddEvenSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],242 'phpOMS\tests\Algorithm\Sort\OddEvenSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],243 'phpOMS\tests\Algorithm\Sort\OddEvenSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],244 'phpOMS\tests\Algorithm\Sort\PancakeSortTest' => ['description' => 'Pancake sort', 'type' => 'framework'],245 'phpOMS\tests\Algorithm\Sort\PancakeSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],246 'phpOMS\tests\Algorithm\Sort\PancakeSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],247 'phpOMS\tests\Algorithm\Sort\PancakeSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],248 'phpOMS\tests\Algorithm\Sort\QuickSortTest' => ['description' => 'Quick sort', 'type' => 'framework'],249 'phpOMS\tests\Algorithm\Sort\QuickSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],250 'phpOMS\tests\Algorithm\Sort\QuickSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],251 'phpOMS\tests\Algorithm\Sort\QuickSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],252 'phpOMS\tests\Algorithm\Sort\SelectionSortTest' => ['description' => 'Selection sort', 'type' => 'framework'],253 'phpOMS\tests\Algorithm\Sort\SelectionSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],254 'phpOMS\tests\Algorithm\Sort\SelectionSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],255 'phpOMS\tests\Algorithm\Sort\SelectionSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],256 'phpOMS\tests\Algorithm\Sort\ShellSortTest' => ['description' => 'Shell sort', 'type' => 'framework'],257 'phpOMS\tests\Algorithm\Sort\ShellSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],258 'phpOMS\tests\Algorithm\Sort\ShellSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],259 'phpOMS\tests\Algorithm\Sort\ShellSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],260 'phpOMS\tests\Algorithm\Sort\StoogeSortTest' => ['description' => 'Stooge sort', 'type' => 'framework'],261 'phpOMS\tests\Algorithm\Sort\StoogeSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],262 'phpOMS\tests\Algorithm\Sort\StoogeSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],263 'phpOMS\tests\Algorithm\Sort\StoogeSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],264 'phpOMS\tests\Algorithm\Sort\TimSortTest' => ['description' => 'Tim sort', 'type' => 'framework'],265 'phpOMS\tests\Algorithm\Sort\TimSortTest:testSmallList' => ['description' => 'A list with one element returns the list with the element itself', 'type' => 'framework'],266 'phpOMS\tests\Algorithm\Sort\TimSortTest:testSortASC' => ['description' => 'A list ot elements can be sorted in ASC order', 'type' => 'framework'],267 'phpOMS\tests\Algorithm\Sort\TimSortTest:testSortDESC' => ['description' => 'A list ot elements can be sorted in DESC order', 'type' => 'framework'],268 'phpOMS\tests\Asset\AssetManagerTest' => ['description' => 'Asset manager to handle/access assets', 'type' => 'framework'],269 'phpOMS\tests\Asset\AssetManagerTest:testAttributes' => ['description' => 'The manager has the expected member variables', 'type' => 'framework'],270 'phpOMS\tests\Asset\AssetManagerTest:testDefault' => ['description' => 'The manager has the expected default values after initialization', 'type' => 'framework'],271 'phpOMS\tests\Asset\AssetManagerTest:testAddAsset' => ['description' => 'An asset can be added to the manager', 'type' => 'framework'],272 'phpOMS\tests\Asset\AssetManagerTest:testRetrieveAsset' => ['description' => 'An asset can be retrieved from the manager', 'type' => 'framework'],273 'phpOMS\tests\Asset\AssetManagerTest:testInvalidAssetReplacement' => ['description' => 'An asset can only be added once to the manager (no duplication unless overwritten)', 'type' => 'framework'],274 'phpOMS\tests\Asset\AssetManagerTest:testAssetReplacement' => ['description' => 'An asset can be replaced upon request', 'type' => 'framework'],275 'phpOMS\tests\Asset\AssetManagerTest:testAssetRemove' => ['description' => 'An asset can be removed from the manager', 'type' => 'framework'],276 'phpOMS\tests\Auth\AuthTest' => ['description' => 'Asset manager to handle/access assets', 'type' => 'framework'],277 'phpOMS\tests\Auth\AuthTest:testAuthWithEmptyHttpSession' => ['description' => 'The default http session doesn\'t authenticate an account', 'type' => 'framework'],278 'phpOMS\tests\Business\Finance\DepreciationTest' => ['description' => 'Depreciation calculations', 'type' => 'framework'],279 'phpOMS\tests\Business\Finance\DepreciationTest:testStraightLine' => ['description' => 'The straight line depreciation and reverse value calculations are correct', 'type' => 'framework'],280 'phpOMS\tests\Business\Finance\DepreciationTest:testArithmeticDegressivDepreciation' => ['description' => 'The arithmetic degressive depreciation and reverse value calculations are correct', 'type' => 'framework'],281 'phpOMS\tests\Business\Finance\DepreciationTest:testArithmeticProgressivDepreciation' => ['description' => 'The arithmetic progressive depreciation and reverse value calculations are correct', 'type' => 'framework'],282 'phpOMS\tests\Business\Finance\DepreciationTest:testGeometricProgressivDepreciation' => ['description' => 'The geometric progressive depreciation and reverse value calculations are correct', 'type' => 'framework'],283 'phpOMS\tests\Business\Finance\DepreciationTest:testGeometricDegressivDepreciation' => ['description' => 'The geometric degressive depreciation and reverse value calculations are correct', 'type' => 'framework'],284 'phpOMS\tests\Business\Finance\FinanceFormulasTest' => ['description' => 'Finance formulas', 'type' => 'framework'],285 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testAnnualPercentageYield' => ['description' => 'The annual percentage yield (APY) and reverse value calculations are correct', 'type' => 'framework'],286 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFutureValueOfAnnuity' => ['description' => 'The future value of annuity (FVA) and reverse value calculations are correct', 'type' => 'framework'],287 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFutureValueOfAnnuityContinuousCompounding' => ['description' => 'The future value of annuity continuous compounding (FVACC) and reverse value calculations are correct', 'type' => 'framework'],288 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testAnnuityPaymentPV' => ['description' => 'The annuity payment from the present value (PV) and reverse value calculations are correct', 'type' => 'framework'],289 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testAnnuityPaymentFV' => ['description' => 'The annuity payment from the future value (FV) and reverse value calculations are correct', 'type' => 'framework'],290 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testAnnutiyPaymentFactorPV' => ['description' => 'The annuity payment from the present value (PV) and reverse value calculations are correct', 'type' => 'framework'],291 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testPresentValueOfAnnuity' => ['description' => 'The present value of the annuity is correct', 'type' => 'framework'],292 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testPresentValueAnnuityFactor' => ['description' => 'The present value annuity factor of the annuity is correct', 'type' => 'framework'],293 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testPresentValueOfAnnuityDue' => ['description' => 'The due present value the annuity is correct', 'type' => 'framework'],294 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFutureValueOfAnnuityDue' => ['description' => 'The due future value the annuity is correct', 'type' => 'framework'],295 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testRelativeMarketShare' => ['description' => 'The relative market share calculations by shares and ales are correct', 'type' => 'framework'],296 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testAssetRatios' => ['description' => 'The asset ratio calculations are correct', 'type' => 'framework'],297 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testBalanceRatios' => ['description' => 'Balance ratio calculations for DII, Receivables/Turnover, and more are correct', 'type' => 'framework'],298 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testDeptRatios' => ['description' => 'Dept ratios for dept coverage, dept to equity and dept to income are correct', 'type' => 'framework'],299 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testReturnOnBalancePositions' => ['description' => 'Return on balance statement positions are correct (e.g. return on assets, on equity)', 'type' => 'framework'],300 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testBalancePLRatios' => ['description' => 'Balance / P&L ratios are correct (e.g. inventory turnover, net profit margin)', 'type' => 'framework'],301 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testRatios' => ['description' => 'Not Implemented!!!', 'type' => 'framework'],302 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testCompound' => ['description' => 'Compound calculations for interest, principal and periods are correct', 'type' => 'framework'],303 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testContinuousCompounding' => ['description' => 'Continuous compound calculations for interest, principal and periods are correct', 'type' => 'framework'],304 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testSimpleInterest' => ['description' => 'Calculations for interest, principal and periods are correct', 'type' => 'framework'],305 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testDiscountedPaybackPeriod' => ['description' => 'The discounted payback period is correct', 'type' => 'framework'],306 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testDoublingTime' => ['description' => 'Test the correct calculation of the growth rate in order to double and vice versa', 'type' => 'framework'],307 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testDoublingTimeContinuousCompounding' => ['description' => 'Test the correct calculation of the growth rate in order to double and vice versa with continuous compounding', 'type' => 'framework'],308 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testEquivalentAnnualAnnuity' => ['description' => 'Calculations for equivalent annual annuity are correct', 'type' => 'framework'],309 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFreeCashFlowToEquity' => ['description' => 'The free cash flow to equity calculation is correct (how much cash is available after expenses and dept payments)', 'type' => 'framework'],310 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFreeCashFlowToFirm' => ['description' => 'The free cash flow to firm calculation is correct (how much cash is available after expenses)', 'type' => 'framework'],311 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFutureValue' => ['description' => 'The future value calculation is correct', 'type' => 'framework'],312 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testFutureValueContinuousCompounding' => ['description' => 'The future value calculation including continuous compounding is correct', 'type' => 'framework'],313 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testValueFactor' => ['description' => 'The future value factor calculation is correct', 'type' => 'framework'],314 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testGeometricMeanReturn' => ['description' => 'The calculation of the geometric mean of multiple return rates is correct', 'type' => 'framework'],315 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testGrowingAnnuityFV' => ['description' => 'The calculation of the future value of the growing annuity is correct', 'type' => 'framework'],316 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testGrowingAnnuityPaymentFV' => ['description' => 'The calculation of the payment based on the future value of the growing annuity is correct', 'type' => 'framework'],317 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testGrowingAnnuityPV' => ['description' => 'The calculation of the present value of the growing annuity is correct', 'type' => 'framework'],318 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testGrowingAnnuityPaymentPV' => ['description' => 'The calculation of the payment based on the present value of the growing annuity is correct', 'type' => 'framework'],319 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testGrowingPerpetuityPV' => ['description' => 'The calculation of the present value of the growing perpetuity is correct', 'type' => 'framework'],320 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testNetPresentValue' => ['description' => 'The calculation of the net present value is correct', 'type' => 'framework'],321 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testEmptyNetPresentValue' => ['description' => 'No cash flows in the net present value calculation result in 0', 'type' => 'framework'],322 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testRealRateOfReturn' => ['description' => 'The calculation of the real rate of return is correct', 'type' => 'framework'],323 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testNetWorkingCapital' => ['description' => 'The calculation of the net working capital is correct', 'type' => 'framework'],324 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testNumberOfPeriodsPVFV' => ['description' => 'The periods to reach a future value based on the present value is calculated correctly', 'type' => 'framework'],325 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testPresentValue' => ['description' => 'The calculation of the present value is correct', 'type' => 'framework'],326 'phpOMS\tests\Business\Finance\FinanceFormulasTest:testPresentValueContinuousCompounding' => ['description' => 'The calculation of the present value using continuous compounding is correct', 'type' => 'framework'],327 'phpOMS\tests\Business\Finance\LoanTest' => ['description' => 'Loan formulas', 'type' => 'framework'],328 'phpOMS\tests\Business\Finance\LoanTest:testLoanToDepositRatio' => ['description' => 'The loan to deposit ratio is correct', 'type' => 'framework'],329 'phpOMS\tests\Business\Finance\LoanTest:testLoanToValueRatio' => ['description' => 'The loan to value ratio is correct', 'type' => 'framework'],330 'phpOMS\tests\Business\Finance\LoanTest:testPaymentsOnBalloonLoan' => ['description' => 'The balloon loan payments are correct for a given balloon', 'type' => 'framework'],331 'phpOMS\tests\Business\Finance\LoanTest:testBalloonBalanceOfLoan' => ['description' => 'The balloon loan residual value (balloon) is correct for given payments', 'type' => 'framework'],332 'phpOMS\tests\Business\Finance\LoanTest:testLoanPayment' => ['description' => 'The loan payments are correct for a given interest rate and period [continuous compounding]', 'type' => 'framework'],333 'phpOMS\tests\Business\Finance\LoanTest:testRemainingBalanceLoan' => ['description' => 'The residual value is correct for a given payment amount, interest rate and period [continuous compounding]', 'type' => 'framework'],334 'phpOMS\tests\Business\Finance\StockBondsTest' => ['description' => 'Stock & bond related formulas', 'type' => 'framework'],335 'phpOMS\tests\Business\Finance\StockBondsTest:testBondEquivalentYield' => ['description' => 'The calculation the bond yield based on face value and price is correct', 'type' => 'framework'],336 'phpOMS\tests\Business\Finance\StockBondsTest:testExpectedReturnCAPM' => ['description' => 'The calculation of the return of the capital asset pricing model is correct', 'type' => 'framework'],337 'phpOMS\tests\Business\Finance\StockBondsTest:testCapitalGainsYield' => ['description' => 'The capital gains yield calculation is correct', 'type' => 'framework'],338 'phpOMS\tests\Business\Finance\StockBondsTest:testDilutedEarningsPerShare' => ['description' => 'The diluted earnings per share calculation is correct', 'type' => 'framework'],339 'phpOMS\tests\Business\Finance\StockBondsTest:testHoldingPeriodReturn' => ['description' => 'The calculation of the absolute return for multiple holding periods is correct', 'type' => 'framework'],340 'phpOMS\tests\Business\Finance\StockBondsTest:testTaxEquivalentYield' => ['description' => 'The tax equivalent yield is calculated correctly', 'type' => 'framework'],341 'phpOMS\tests\Business\Finance\StockBondsTest:testNetAssetValue' => ['description' => 'The net asset value is calculated correctly', 'type' => 'framework'],342 'phpOMS\tests\Business\Finance\StockBondsTest:testPresentValueOfStockConstantGrowth' => ['description' => 'The calculation of the present value of a stock with constant growth rate is correct', 'type' => 'framework'],343 'phpOMS\tests\Business\Finance\StockBondsTest:testTotalStockReturn' => ['description' => 'The total stock return including dividends and sales price is correct', 'type' => 'framework'],344 'phpOMS\tests\Business\Finance\StockBondsTest:testYieldToMaturity' => ['description' => 'The calculation of the yield of a bond is correct', 'type' => 'framework'],345 'phpOMS\tests\Business\Finance\StockBondsTest:testZeroCouponBondValue' => ['description' => 'The calculation of value of the zero coupon bond is correct', 'type' => 'framework'],346 'phpOMS\tests\Business\Finance\StockBondsTest:testZeroCouponBondEffectiveYield' => ['description' => 'The calculation of the yield of a zero coupon bond is correct', 'type' => 'framework'],347 'phpOMS\tests\Business\Finance\LorenzkurveTest' => ['description' => 'Lorenz kurve', 'type' => 'framework'],348 'phpOMS\tests\Business\Finance\LorenzkurveTest:testGiniCoefficient' => ['description' => 'The gini coefficient calculation is correct', 'type' => 'framework'],349 'phpOMS\tests\Business\Marketing\ArticleCorrelationAffinityTest' => ['description' => 'Article affinity/correlation', 'type' => 'framework'],350 'phpOMS\tests\Business\Marketing\ArticleCorrelationAffinityTest:testAffinity' => ['description' => 'The highest affinities between articles purchased are calculated correctly', 'type' => 'framework'],351 'phpOMS\tests\Business\Marketing\ArticleCorrelationAffinityTest:testInvalidItemAffinity' => ['description' => 'The affinity of a new article is empty', 'type' => 'framework'],352 'pphpOMS\tests\Business\Marketing\CustomerValueTest' => ['description' => 'Customer value', 'type' => 'framework'],353 'pphpOMS\tests\Business\Marketing\CustomerValueTest:testSimpleCLV' => ['description' => 'The simple customer life time value is correctly calculated', 'type' => 'framework'],354 'pphpOMS\tests\Business\Marketing\CustomerValueTest:testMRR' => ['description' => 'The monthly recurring revenue (MRR) is correctly calculated', 'type' => 'framework'],355 'phpOMS\tests\Business\Marketing\MetricsTest' => ['description' => 'General marketing metrics', 'type' => 'framework'],356 'phpOMS\tests\Business\Marketing\MetricsTest:testCustomerRetention' => ['description' => 'Test the correctness of the customer retention calculation', 'type' => 'framework'],357 'phpOMS\tests\Business\Marketing\MetricsTest:testBerrysCustomerProfits' => ['description' => 'The profit according to Berry can be correctly calculated', 'type' => 'framework'],358 'phpOMS\tests\Business\Marketing\MetricsTest:testMigrationModelPurchaseMatrix' => ['description' => 'The purchase probability of customers can be calculated based on historic information using the migration model', 'type' => 'framework'],359 'phpOMS\tests\Business\Marketing\MetricsTest:testMigrationModel' => ['description' => 'The CLV can be calculated using the migration model', 'type' => 'framework'],360 'phpOMS\tests\Business\Marketing\MetricsTest:testMailingSuccessEstimation' => ['description' => 'The migration model can be used in order to determin which buying/none-buying customer group should receive a mailing', 'type' => 'framework'],361 'phpOMS\tests\Business\Marketing\NetPromoterScoreTest' => ['description' => 'Net promoter', 'type' => 'framework'],362 'phpOMS\tests\Business\Marketing\NetPromoterScoreTest:testDefault' => ['description' => 'The net promoter has the expected default values after initialization', 'type' => 'framework'],363 'phpOMS\tests\Business\Marketing\NetPromoterScoreTest:testScoreDetractorPassivePromotor' => ['description' => 'The net promoter score, detractors, passives and promoters are correct', 'type' => 'framework'],364 'phpOMS\tests\Business\Marketing\PageRankTest' => ['description' => 'Page rank algorithm', 'type' => 'framework'],365 'phpOMS\tests\Business\Marketing\PageRankTest:testPageRank' => ['description' => 'Test the correctness of the page rank algorithm', 'type' => 'framework'],366 'phpOMS\tests\Business\Marketing\PageRankTest:testPageRankCustomDampingAndStart' => ['description' => 'Test the correctness of the page rank algorithm with custom damping and starting values', 'type' => 'framework'],367 'phpOMS\tests\Business\Programming\MetricsTest' => ['description' => 'General programming metrics', 'type' => 'framework'],368 'phpOMS\tests\Business\Programming\MetricsTest:testABCMetric' => ['description' => 'Test correctness of the ABC calculation', 'type' => 'framework'],369 'phpOMS\tests\Business\Programming\MetricsTest:testCRAPMetric' => ['description' => 'Test correctness of CRAP score', 'type' => 'framework'],370 'phpOMS\tests\Business\Sales\MarketShareEstimationTest' => ['description' => 'Market share calculations', 'type' => 'framework'],371 'phpOMS\tests\Business\Sales\MarketShareEstimationTest:testZipfRank' => ['description' => 'The rank calculated with Zipf is correct', 'type' => 'framework'],372 'phpOMS\tests\Business\Sales\MarketShareEstimationTest:testZipfShare' => ['description' => 'The market share by rank calculated with Zipf is correct', 'type' => 'framework'],373 'phpOMS\tests\Config\OptionsTraitTest' => ['description' => 'Helper for managing options', 'type' => 'framework'],374 'phpOMS\tests\Config\OptionsTraitTest:testOptionTraitMembers' => ['description' => 'The option helper has the expected attributes', 'type' => 'framework'],375 'phpOMS\tests\Config\OptionsTraitTest:testDefault' => ['description' => 'The option helper has the expected default values after initialization', 'type' => 'framework'],376 'phpOMS\tests\Config\OptionsTraitTest:testAdd' => ['description' => 'Options can be added to the helper', 'type' => 'framework'],377 'phpOMS\tests\Config\OptionsTraitTest:testAddMultiple' => ['description' => 'Multiple options can be added to the helper in one go', 'type' => 'framework'],378 'phpOMS\tests\Config\OptionsTraitTest:testGetMultiple' => ['description' => 'Multiple options can be retrieved', 'type' => 'framework'],379 'phpOMS\tests\Config\OptionsTraitTest:testOverwrite' => ['description' => 'Options can be overwritten/changed', 'type' => 'framework'],380 'phpOMS\tests\DataStorage\Cache\CachePoolTest' => ['description' => 'Pool for caches', 'type' => 'framework'],381 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testDefault' => ['description' => 'The pool has the expected default values after initialization', 'type' => 'framework'],382 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testAdd' => ['description' => 'New cache connections can be added to the pool', 'type' => 'framework'],383 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testOverwrite' => ['description' => 'Cache connections cannot be overwritten with a different cache connection', 'type' => 'framework'],384 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testGet' => ['description' => 'Cache connections can be accessed with an identifier', 'type' => 'framework'],385 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testGetDefault' => ['description' => 'By default a null cache is returned if no cache connection exists for the identifier', 'type' => 'framework'],386 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testCreate' => ['description' => 'Cache connections can created by the pool and automatically get added but not overwritten', 'type' => 'framework'],387 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testRemove' => ['description' => 'Cache connections can be removed from the pool', 'type' => 'framework'],388 'phpOMS\tests\DataStorage\Cache\CachePoolTest:testRemoveInvalid' => ['description' => 'Removing a cache with an invalid identifier will result in no actions', 'type' => 'framework'],389 'phpOMS\tests\DataStorage\Cache\Connection\ConnectionFactoryTest' => ['description' => 'Factory for generating cache connections', 'type' => 'framework'],390 'phpOMS\tests\DataStorage\Cache\Connection\ConnectionFactoryTest:testCreateFileCache' => ['description' => 'The file cache can be created', 'type' => 'framework'],391 'phpOMS\tests\DataStorage\Cache\Connection\ConnectionFactoryTest:testCreateMemCached' => ['description' => 'The memcached cache can be created', 'type' => 'framework'],392 'phpOMS\tests\DataStorage\Cache\Connection\ConnectionFactoryTest:testCreateRedisCache' => ['description' => 'The redis cache can be created', 'type' => 'framework'],393 'phpOMS\tests\DataStorage\Cache\Connection\ConnectionFactoryTest:testInvalidCacheType' => ['description' => 'A invalid cache type results in an exception', 'type' => 'framework'],394 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest' => ['description' => 'File cache connection', 'type' => 'framework'],395 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testDefault' => ['description' => 'The file cache connection has the expected default values after initialization', 'type' => 'framework'],396 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testConnect' => ['description' => 'The connection to a dedicated cache directory can be established (none-existing directories get created)', 'type' => 'framework'],397 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testSetInputOutput' => ['description' => 'Different cache data (types) can be set and returned', 'type' => 'framework'],398 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testAddInputOutput' => ['description' => 'Cache data can bet added and returned', 'type' => 'framework'],399 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidOverwrite' => ['description' => 'Cache data cannot be added if it already exists', 'type' => 'framework'],400 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testReplace' => ['description' => 'Existing cache data can be replaced', 'type' => 'framework'],401 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidReplace' => ['description' => 'None-existing cache data cannot be replaced', 'type' => 'framework'],402 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testDelete' => ['description' => 'Cache data can be deleted', 'type' => 'framework'],403 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testStats' => ['description' => 'The cache correctly handles general cache information', 'type' => 'framework'],404 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testFlush' => ['description' => 'The cache can be flushed', 'type' => 'framework'],405 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testUnexpiredInputOutput' => ['description' => 'Cache data can be set and returned with expiration limits', 'type' => 'framework'],406 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testExpiredInputOutput' => ['description' => 'Expired cache data can be forced to return', 'type' => 'framework'],407 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testForceExpiredInputOutput' => ['description' => 'Expired cache data cannot be returned', 'type' => 'framework'],408 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidDeleteUnexpired' => ['description' => 'Unexpired cache data cannot be delete if lower expiration is defined', 'type' => 'framework'],409 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testDeleteExpired' => ['description' => 'Expired cache data can be deleted if higher expiration is defined', 'type' => 'framework'],410 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testForceDeleteUnexpired' => ['description' => 'Unexpired data can be force deleted with lower expiration date', 'type' => 'framework'],411 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testFlushExpired' => ['description' => 'Cache data can be flushed by expiration date', 'type' => 'framework'],412 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testBadCacheStatus' => ['description' => 'A bad cache status will prevent all cache actions', 'type' => 'framework'],413 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidCachePath' => ['description' => 'A invalid cache connection will throw an InvalidConnectionConfigException', 'type' => 'framework'],414 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidDataTypeAdd' => ['description' => 'Adding a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],415 'phpOMS\tests\DataStorage\Cache\Connection\FileCacheTest:testInvalidDataTypeSet' => ['description' => 'Setting a invaliddata type will throw an InvalidArgumentException', 'type' => 'framework'],416 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest' => ['description' => 'Memcached connection', 'type' => 'framework'],417 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testDefault' => ['description' => 'The memcached connection has the expected default values after initialization', 'type' => 'framework'],418 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testConnect' => ['description' => 'The connection to a cache can be established (none-existing directories get created)', 'type' => 'framework'],419 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testSetInputOutput' => ['description' => 'Different cache data (types) can be set and returned', 'type' => 'framework'],420 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testAddInputOutput' => ['description' => 'Cache data can bet added and returned', 'type' => 'framework'],421 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidOverwrite' => ['description' => 'Cache data cannot be added if it already exists', 'type' => 'framework'],422 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testReplace' => ['description' => 'Existing cache data can be replaced', 'type' => 'framework'],423 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidReplace' => ['description' => 'None-existing cache data cannot be replaced', 'type' => 'framework'],424 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testDelete' => ['description' => 'Cache data can be deleted', 'type' => 'framework'],425 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testStats' => ['description' => 'The cache correctly handles general cache information', 'type' => 'framework'],426 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testFlush' => ['description' => 'The cache can be flushed', 'type' => 'framework'],427 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testUnexpiredInputOutput' => ['description' => 'Cache data can be set and returned with expiration limits', 'type' => 'framework'],428 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testExpiredInputOutput' => ['description' => 'Expired cache data can be forced to return', 'type' => 'framework'],429 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testForceExpiredInputOutput' => ['description' => 'Expired cache data cannot be returned', 'type' => 'framework'],430 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidDeleteUnexpired' => ['description' => 'Unexpired cache data cannot be delete if lower expiration is defined', 'type' => 'framework'],431 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testDeleteExpired' => ['description' => 'Expired cache data can be deleted if higher expiration is defined', 'type' => 'framework'],432 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testForceDeleteUnexpired' => ['description' => 'Unexpired data can be force deleted with lower expiration date', 'type' => 'framework'],433 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testFlushExpired' => ['description' => 'Cache data can be flushed by expiration date', 'type' => 'framework'],434 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testBadCacheStatus' => ['description' => 'A bad cache status will prevent all cache actions', 'type' => 'framework'],435 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidDataTypeAdd' => ['description' => 'Adding a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],436 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidDataTypeSet' => ['description' => 'Setting a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],437 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidCacheHost' => ['description' => 'A invalid host throws a InvalidConnectionConfigException', 'type' => 'framework'],438 'phpOMS\tests\DataStorage\Cache\Connection\MemCachedTest:testInvalidCachePort' => ['description' => 'A invalid port throws a InvalidConnectionConfigException', 'type' => 'framework'],439 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest' => ['description' => 'Redis cache connection', 'type' => 'framework'],440 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testDefault' => ['description' => 'The redis cache connection has the expected default values after initialization', 'type' => 'framework'],441 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testConnect' => ['description' => 'The connection to a cache can be established (none-existing directories get created)', 'type' => 'framework'],442 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testSetInputOutput' => ['description' => 'Different cache data (types) can be set and returned', 'type' => 'framework'],443 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testAddInputOutput' => ['description' => 'Cache data can bet added and returned', 'type' => 'framework'],444 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidOverwrite' => ['description' => 'Cache data cannot be added if it already exists', 'type' => 'framework'],445 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testReplace' => ['description' => 'Existing cache data can be replaced', 'type' => 'framework'],446 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidReplace' => ['description' => 'None-existing cache data cannot be replaced', 'type' => 'framework'],447 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testDelete' => ['description' => 'Cache data can be deleted', 'type' => 'framework'],448 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testStats' => ['description' => 'The cache correctly handles general cache information', 'type' => 'framework'],449 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testFlush' => ['description' => 'The cache can be flushed', 'type' => 'framework'],450 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testUnexpiredInputOutput' => ['description' => 'Cache data can be set and returned with expiration limits', 'type' => 'framework'],451 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testExpiredInputOutput' => ['description' => 'Expired cache data can be forced to return', 'type' => 'framework'],452 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testForceExpiredInputOutput' => ['description' => 'Expired cache data cannot be returned', 'type' => 'framework'],453 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidDeleteUnexpired' => ['description' => 'Unexpired cache data cannot be delete if lower expiration is defined', 'type' => 'framework'],454 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testDeleteExpired' => ['description' => 'Expired cache data can be deleted if higher expiration is defined', 'type' => 'framework'],455 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testForceDeleteUnexpired' => ['description' => 'Unexpired data can be force deleted with lower expiration date', 'type' => 'framework'],456 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testFlushExpired' => ['description' => 'Cache data can be flushed by expiration date', 'type' => 'framework'],457 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testBadCacheStatus' => ['description' => 'A bad cache status will prevent all cache actions', 'type' => 'framework'],458 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidDataTypeAdd' => ['description' => 'Adding a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],459 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidDataTypeSet' => ['description' => 'Setting a invalid data type will throw an InvalidArgumentException', 'type' => 'framework'],460 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidCacheHost' => ['description' => 'A invalid host throws a InvalidConnectionConfigException', 'type' => 'framework'],461 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidCachePort' => ['description' => 'A invalid port throws a InvalidConnectionConfigException', 'type' => 'framework'],462 'phpOMS\tests\DataStorage\Cache\Connection\RedisTest:testInvalidCacheDatabase' => ['description' => 'A invalid database throws a InvalidConnectionConfigException', 'type' => 'framework'],463 'phpOMS\tests\DataStorage\Cache\Connection\NullCacheTest' => ['description' => 'Null cache connection if no cache is available', 'type' => 'framework'],464 'phpOMS\tests\DataStorage\Cache\Connection\NullCacheTest:testDefault' => ['description' => 'The default cache has the expected default values after initialization', 'type' => 'framework'],465 'phpOMS\tests\DataStorage\Cookie\CookieJarTest' => ['description' => 'CookieJar to handle http cookies', 'type' => 'framework'],466 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testDefault' => ['description' => 'The cookie jar has the expected default values and functionality after initialization', 'type' => 'framework'],467 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testCookieInputOutput' => ['description' => 'Cookie values can be set and returned', 'type' => 'framework'],468 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testOverwrite' => ['description' => 'Cookie values can be forced to overwrite', 'type' => 'framework'],469 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testInvalidOverwrite' => ['description' => 'Cookie values cannot be overwritten', 'type' => 'framework'],470 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testRemove' => ['description' => 'Cookie values can be removed', 'type' => 'framework'],471 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testInvalidRemove' => ['description' => 'None-existing cookie values cannot be removed', 'type' => 'framework'],472 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testDeleteLocked' => ['description' => 'Values cannot be removed from a locked cookie and throws a LockException', 'type' => 'framework'],473 'phpOMS\tests\DataStorage\Cookie\CookieJarTest:testSaveLocked' => ['description' => 'A locked cookie cannot be saved and throws a LockException', 'type' => 'framework'],474 'phpOMS\tests\DataStorage\Database\DatabasePoolTest' => ['description' => 'Pool for database connections', 'type' => 'framework'],475 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testDefault' => ['description' => 'The pool has the expected default values after initialization', 'type' => 'framework'],476 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testCreateConnection' => ['description' => 'A database connection can be created by the pool', 'type' => 'framework'],477 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testInvalidOverwrite' => ['description' => 'Database connections cannot be overwritten', 'type' => 'framework'],478 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testAddConnections' => ['description' => 'Existing database connections can be added to the pool', 'type' => 'framework'],479 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testRemoveConnections' => ['description' => 'Database connections can be removed from the pool', 'type' => 'framework'],480 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testInvalidRemove' => ['description' => 'Invalid database connections cannot be removed', 'type' => 'framework'],481 'phpOMS\tests\DataStorage\Database\DatabasePoolTest:testDefaultConnection' => ['description' => 'The first connection added to the pool is the default connection', 'type' => 'framework'],482 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest' => ['description' => 'Datamapper for database models', 'type' => 'framework'],483 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testDefault' => ['description' => 'The datamapper has the expected default values after initialization', 'type' => 'framework'],484 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testCreate' => ['description' => 'The datamapper successfully creates a database entry of a model', 'type' => 'framework'],485 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testCreateArray' => ['description' => 'The datamapper successfully creates a database entry of array data', 'type' => 'framework'],486 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testRead' => ['description' => 'The datamapper successfully returns a database entry as model', 'type' => 'framework'],487 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testReadArray' => ['description' => 'The datamapper successfully returns a database entry as array', 'type' => 'framework'],488 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testUpdate' => ['description' => 'The datamapper successfully updates a database entry from a model', 'type' => 'framework'],489 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testUpdateArray' => ['description' => 'The datamapper successfully updates a database entry from an array', 'type' => 'framework'],490 'phpOMS\tests\DataStorage\Database\DataMapperAbstractTest:testDelete' => ['description' => 'The datamapper successfully deletes a database entry from a model', 'type' => 'framework'],491 'phpOMS\tests\DataStorage\Database\SchemaMapperTest' => ['description' => 'Mapper for the database schema', 'type' => 'framework'],492 'phpOMS\tests\DataStorage\Database\SchemaMapperTest:testTables' => ['description' => 'The tables can be returned', 'type' => 'framework'],493 'phpOMS\tests\DataStorage\Database\SchemaMapperTest:testFields' => ['description' => 'The fields of a table can be returned', 'type' => 'framework'],494 'phpOMS\tests\DataStorage\Database\Connection\ConnectionFactoryTest' => ['description' => 'Database connection factory', 'type' => 'framework'],495 'phpOMS\tests\DataStorage\Database\Connection\ConnectionFactoryTest:testCreateMysql' => ['description' => 'The mysql connection can be successfully created', 'type' => 'framework'],496 'phpOMS\tests\DataStorage\Database\Connection\ConnectionFactoryTest:testCreatePostgres' => ['description' => 'The postgresql connection can be successfully created', 'type' => 'framework'],497 'phpOMS\tests\DataStorage\Database\Connection\ConnectionFactoryTest:testCreateSqlsrv' => ['description' => 'The sqlserver connection can be successfully created', 'type' => 'framework'],498 'phpOMS\tests\DataStorage\Database\Connection\ConnectionFactoryTest:testCreateSqlite' => ['description' => 'The sqlite connection can be successfully created', 'type' => 'framework'],499 'phpOMS\tests\DataStorage\Database\Connection\ConnectionFactoryTest:testInvalidDatabaseType' => ['description' => 'A invalid database type throws a InvalidArgumentException', 'type' => 'framework'],500 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest' => ['description' => 'Mysql connection', 'type' => 'framework'],501 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testConnect' => ['description' => 'Valid mysql connection data result in a valid database connection', 'type' => 'framework'],502 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidDatabaseType' => ['description' => 'A missing database type returns a failure', 'type' => 'framework'],503 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidHost' => ['description' => 'A missing database host returns a failure', 'type' => 'framework'],504 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidPort' => ['description' => 'A missing database port returns a failure', 'type' => 'framework'],505 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidDatabase' => ['description' => 'A missing database returns a failure', 'type' => 'framework'],506 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidLogin' => ['description' => 'A missing database login returns a failure', 'type' => 'framework'],507 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidPassword' => ['description' => 'A missing database password returns a failure', 'type' => 'framework'],508 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidDatabaseTypeName' => ['description' => 'A invalid database type returns a failure', 'type' => 'framework'],509 'phpOMS\tests\DataStorage\Database\Connection\MysqlConnectionTest:testInvalidDatabaseName' => ['description' => 'A invalid database returns a failure', 'type' => 'framework'],510 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest' => ['description' => 'Postgresql connection', 'type' => 'framework'],511 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testConnect' => ['description' => 'Valid postgresql connection data result in a valid database connection', 'type' => 'framework'],512 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidDatabaseType' => ['description' => 'A missing database type returns a failure', 'type' => 'framework'],513 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidHost' => ['description' => 'A missing database host returns a failure', 'type' => 'framework'],514 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidPort' => ['description' => 'A missing database port returns a failure', 'type' => 'framework'],515 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidDatabase' => ['description' => 'A missing database returns a failure', 'type' => 'framework'],516 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidLogin' => ['description' => 'A missing database login returns a failure', 'type' => 'framework'],517 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidPassword' => ['description' => 'A missing database password returns a failure', 'type' => 'framework'],518 'phpOMS\tests\DataStorage\Database\Connection\PostgresConnectionTest:testInvalidDatabaseTypeName' => ['description' => 'A invalid database returns a failure', 'type' => 'framework'],519 'phpOMS\tests\DataStorage\Database\Connection\SQLiteConnectionTest' => ['description' => 'Postgresql connection', 'type' => 'framework'],520 'phpOMS\tests\DataStorage\Database\Connection\SQLiteConnectionTest:testConnect' => ['description' => 'Valid sqlite connection data result in a valid database connection', 'type' => 'framework'],521 'phpOMS\tests\DataStorage\Database\Connection\SQLiteConnectionTest:testInvalidDatabaseType' => ['description' => 'A missing database type returns a failure', 'type' => 'framework'],522 'phpOMS\tests\DataStorage\Database\Connection\SQLiteConnectionTest:testInvalidDatabase' => ['description' => 'A missing database returns a failure', 'type' => 'framework'],523 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest' => ['description' => 'Sqlserver connection', 'type' => 'framework'],524 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testConnect' => ['description' => 'Valid sqlserver connection data result in a valid database connection', 'type' => 'framework'],525 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidDatabaseType' => ['description' => 'A missing database type returns a failure', 'type' => 'framework'],526 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidHost' => ['description' => 'A missing database host returns a failure', 'type' => 'framework'],527 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidPort' => ['description' => 'A missing database port returns a failure', 'type' => 'framework'],528 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidDatabase' => ['description' => 'A missing database returns a failure', 'type' => 'framework'],529 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidLogin' => ['description' => 'A missing database login returns a failure', 'type' => 'framework'],530 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidPassword' => ['description' => 'A missing database password returns a failure', 'type' => 'framework'],531 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidDatabaseTypeName' => ['description' => 'A invalid database type returns a failure', 'type' => 'framework'],532 'phpOMS\tests\DataStorage\Database\Connection\SqlServerConnectionTest:testInvalidDatabaseName' => ['description' => 'A invalid database returns a failure', 'type' => 'framework'],533 'phpOMS\tests\DataStorage\Database\Connection\NullConnectionTest' => ['description' => 'Null connection', 'type' => 'framework'],534 'phpOMS\tests\DataStorage\Database\Connection\NullConnectionTest:testConnect' => ['description' => 'A null connection can be created as placeholder', 'type' => 'framework'],535 'phpOMS\tests\DataStorage\Database\Query\BuilderTest' => ['description' => 'Query builder for sql queries', 'type' => 'framework'],536 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlSelect' => ['description' => 'Mysql selects form a valid query', 'type' => 'framework'],537 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlOrder' => ['description' => 'Mysql orders form a valid query', 'type' => 'framework'],538 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlOffsetLimit' => ['description' => 'Mysql offsets and limits form a valid query', 'type' => 'framework'],539 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlGroup' => ['description' => 'Mysql groupings form a valid query', 'type' => 'framework'],540 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlWheres' => ['description' => 'Mysql wheres form a valid query', 'type' => 'framework'],541 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlJoins' => ['description' => 'Mysql joins form a valid query', 'type' => 'framework'],542 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlInsert' => ['description' => 'Mysql inserts form a valid query', 'type' => 'framework'],543 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlDelete' => ['description' => 'Mysql deletes form a valid query', 'type' => 'framework'],544 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlUpdate' => ['description' => 'Mysql updates form a valid query', 'type' => 'framework'],545 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testRawInputOutput' => ['description' => 'Raw queries get output as defined', 'type' => 'framework'],546 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawSelect' => ['description' => 'Read only queries allow selects', 'type' => 'framework'],547 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawDrop' => ['description' => 'Read only queries don\'t allow drops', 'type' => 'framework'],548 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawDelete' => ['description' => 'Read only queries don\'t allow deletes', 'type' => 'framework'],549 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawCreate' => ['description' => 'Read only queries don\'t allow creates', 'type' => 'framework'],550 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawAlter' => ['description' => 'Read only queries don\'t allow modifications', 'type' => 'framework'],551 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyInsert' => ['description' => 'Read only queries don\'t allow inserts', 'type' => 'framework'],552 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyUpdate' => ['description' => 'Read only queries don\'t allow updates', 'type' => 'framework'],553 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyDelete' => ['description' => 'Read only queries don\'t allow deletes', 'type' => 'framework'],554 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidSelectParameter' => ['description' => 'Invalid select types throw a InvalidArgumentException', 'type' => 'framework'],555 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidFromParameter' => ['description' => 'Invalid from types throw a InvalidArgumentException', 'type' => 'framework'],556 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidGroupByParameter' => ['description' => 'Invalid group types throw a InvalidArgumentException', 'type' => 'framework'],557 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidWhereOperator' => ['description' => 'Invalid where operators throw a InvalidArgumentException', 'type' => 'framework'],558 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidJoinTable' => ['description' => 'Invalid join types throw a InvalidArgumentException', 'type' => 'framework'],559 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidJoinOperator' => ['description' => 'Invalid join operators throw a InvalidArgumentException', 'type' => 'framework'],560 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidOrderType' => ['description' => 'Invalid order types throw a InvalidArgumentException', 'type' => 'framework'],561 'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testInvalidOrderColumnType' => ['description' => 'Invalid order column types throw a InvalidArgumentException', 'type' => 'framework'],562 'phpOMS\tests\DataStorage\Database\Query\Grammar\GrammarTest' => ['description' => 'Basic sql query grammar', 'type' => 'framework'],563 'phpOMS\tests\DataStorage\Database\Query\Grammar\GrammarTest:testDefault' => ['description' => 'The grammar has the expected default values after initialization', 'type' => 'framework'],564 'phpOMS\tests\DataStorage\Database\Query\Grammar\MysqlGrammarTest' => ['description' => 'Mysql sql query grammar', 'type' => 'framework'],565 'phpOMS\tests\DataStorage\Database\Query\Grammar\MysqlGrammarTest:testDefault' => ['description' => 'The grammar has the expected default values after initialization', 'type' => 'framework'],566 'phpOMS\tests\DataStorage\Database\Query\Grammar\SQLiteGrammarTest' => ['description' => 'SQLite sql query grammar', 'type' => 'framework'],567 'phpOMS\tests\DataStorage\Database\Query\Grammar\SQLiteGrammarTest:testDefault' => ['description' => 'The grammar has the expected default values after initialization', 'type' => 'framework'],568 'phpOMS\tests\DataStorage\Database\Schema\BuilderTest' => ['description' => 'Query builder for sql schemas', 'type' => 'framework'],569 'phpOMS\tests\DataStorage\Database\Schema\BuilderTest:testMysqlDrop' => ['description' => 'Mysql drops form a valid query', 'type' => 'framework'],570 'phpOMS\tests\DataStorage\Database\Schema\BuilderTest:testMysqlShowTables' => ['description' => ' Mysql show tables form a valid query', 'type' => 'framework'],571 'phpOMS\tests\DataStorage\Database\Schema\BuilderTest:testMysqlShowFields' => ['description' => 'Mysql show fields form a valid query', 'type' => 'framework'],572 'phpOMS\tests\DataStorage\Database\Schema\BuilderTest:testMysqlCreateTable' => ['description' => 'Mysql create tables form a valid query', 'type' => 'framework'],573 'phpOMS\tests\DataStorage\Database\Schema\Grammar\GrammarTest' => ['description' => 'Basic sql query grammar', 'type' => 'framework'],574 'phpOMS\tests\DataStorage\Database\Schema\Grammar\GrammarTest:testDefault' => ['description' => 'The grammar has the expected default values after initialization', 'type' => 'framework'],575 'phpOMS\tests\DataStorage\Database\Schema\Grammar\MysqlGrammarTest' => ['description' => 'Mysql sql schema grammar', 'type' => 'framework'],576 'phpOMS\tests\DataStorage\Database\Schema\Grammar\MysqlGrammarTest:testDefault' => ['description' => 'The grammar has the expected default values after initialization', 'type' => 'framework'],577 'phpOMS\tests\DataStorage\Database\Schema\Grammar\MysqlGrammarTest:testSchemaInputOutput' => ['description' => 'The the grammar correctly creates and returns a database table', 'type' => 'framework'],578 'phpOMS\tests\DataStorage\Database\Schema\Grammar\MysqlGrammarTest:testDelete' => ['description' => 'The grammar correctly deletes a table', 'type' => 'framework'],579 'phpOMS\tests\DataStorage\Database\Schema\Grammar\SQLiteGrammarTest' => ['description' => 'SQLite sql schema grammar', 'type' => 'framework'],580 'phpOMS\tests\DataStorage\Database\Schema\Grammar\SQLiteGrammarTest:testDefault' => ['description' => 'The grammar has the expected default values after initialization', 'type' => 'framework'],581 'phpOMS\tests\DataStorage\Session\HttpSessionTest' => ['description' => 'Session data handler for http sessions', 'type' => 'framework'],582 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testDefault' => ['description' => 'The session has the expected default values after initialization', 'type' => 'framework'],583 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testInputOutput' => ['description' => 'Session data can be set and returned', 'type' => 'framework'],584 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testOverwrite' => ['description' => 'Session data can be forced to overwrite', 'type' => 'framework'],585 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testInvalidOverwrite' => ['description' => 'Session data cannot be overwritten', 'type' => 'framework'],586 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testRemove' => ['description' => 'Session data can be removed', 'type' => 'framework'],587 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testInvalidRemove' => ['description' => 'None-existing session data cannot be removed', 'type' => 'framework'],588 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testSessionIdInputOutput' => ['description' => 'A session id can be set and returned', 'type' => 'framework'],589 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testLockInputOutput' => ['description' => 'A session can be locked for changes', 'type' => 'framework'],590 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testSave' => ['description' => 'Session data can be saved', 'type' => 'framework'],591 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testInvalidLockSave' => ['description' => 'Locked sessions cannot be saved', 'type' => 'framework'],592 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testLockInvalidSet' => ['description' => 'A locked session cannot add or change data', 'type' => 'framework'],593 'phpOMS\tests\DataStorage\Session\HttpSessionTest:testLockInvalidRemove' => ['description' => 'A locked session cannot remove data', 'type' => 'framework'],594 'phpOMS\tests\DataStorage\Session\FileSessionTest' => ['description' => 'Session data handler for http sessions', 'type' => 'framework'],595 'phpOMS\tests\DataStorage\Session\FileSessionTest:testDefault' => ['description' => 'The session has the expected default values after initialization', 'type' => 'framework'],596 'phpOMS\tests\DataStorage\Session\FileSessionTest:testInputOutput' => ['description' => 'Session data can be set and returned', 'type' => 'framework'],597 'phpOMS\tests\DataStorage\Session\FileSessionTest:testOverwrite' => ['description' => 'Session data can be forced to overwrite', 'type' => 'framework'],598 'phpOMS\tests\DataStorage\Session\FileSessionTest:testInvalidOverwrite' => ['description' => 'Session data cannot be overwritten', 'type' => 'framework'],599 'phpOMS\tests\DataStorage\Session\FileSessionTest:testRemove' => ['description' => 'Session data can be removed', 'type' => 'framework'],600 'phpOMS\tests\DataStorage\Session\FileSessionTest:testInvalidRemove' => ['description' => 'None-existing session data cannot be removed', 'type' => 'framework'],601 'phpOMS\tests\DataStorage\Session\FileSessionTest:testSessionIdInputOutput' => ['description' => 'A session id can be set and returned', 'type' => 'framework'],602 'phpOMS\tests\DataStorage\Session\FileSessionTest:testLockInputOutput' => ['description' => 'A session can be locked for changes', 'type' => 'framework'],603 'phpOMS\tests\DataStorage\Session\FileSessionTest:testSave' => ['description' => 'Session data can be saved', 'type' => 'framework'],604 'phpOMS\tests\DataStorage\Session\FileSessionTest:testInvalidLockSave' => ['description' => 'Locked sessions cannot be saved', 'type' => 'framework'],605 'phpOMS\tests\DataStorage\Session\FileSessionTest:testLockInvalidSet' => ['description' => 'A locked session cannot add or change data', 'type' => 'framework'],606 'phpOMS\tests\DataStorage\Session\FileSessionTest:testLockInvalidRemove' => ['description' => 'A locked session cannot remove data', 'type' => 'framework'],607 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest' => ['description' => 'File session handler', 'type' => 'framework'],608 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testCreateSid' => ['description' => 'A session id can be generated', 'type' => 'framework'],609 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testSessionPath' => ['description' => 'The session path can be accessed', 'type' => 'framework'],610 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testInvalidSessionPath' => ['description' => 'A invalid session path cannot be accessed', 'type' => 'framework'],611 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testSessionClose' => ['description' => 'A session can be closed', 'type' => 'framework'],612 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testSessionInputOutput' => ['description' => 'A valid session id can store and return data', 'type' => 'framework'],613 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testReadInvalidSessionId' => ['description' => 'A invalid session id doesn\'t return any data', 'type' => 'framework'],614 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testSessionDestroy' => ['description' => 'A session can be destroyed', 'type' => 'framework'],615 'phpOMS\tests\DataStorage\Session\FileSessionHandlerTest:testSessionTimeoutDestroy' => ['description' => 'Sessions can be removed based on a timeout', 'type' => 'framework'],616 'phpOMS\tests\Dispatcher\DispatcherTest' => ['description' => 'Dispatcher for executing request endpoints', 'type' => 'framework'],617 'phpOMS\tests\Dispatcher\DispatcherTest:testClosure' => ['description' => 'The dispatcher can dispatch a function/closure', 'type' => 'framework'],618 'phpOMS\tests\Dispatcher\DispatcherTest:testPathMethod' => ['description' => 'The dispatcher can dispatch a method as string representation of a controller', 'type' => 'framework'],619 'phpOMS\tests\Dispatcher\DispatcherTest:testPathMethodInArray' => ['description' => 'The dispatcher can dispatch a method as array representation of a controller', 'type' => 'framework'],620 'phpOMS\tests\Dispatcher\DispatcherTest:testPathStatic' => ['description' => 'The dispatcher can dispatch a static method as string representation', 'type' => 'framework'],621 'phpOMS\tests\Dispatcher\DispatcherTest:testArray' => ['description' => 'The dispatcher can dispatch multiple destinations after another', 'type' => 'framework'],622 'phpOMS\tests\Dispatcher\DispatcherTest:testInvalidDestination' => ['description' => 'A invalid destination type throws UnexpectedValueException', 'type' => 'framework'],623 'phpOMS\tests\Dispatcher\DispatcherTest:testInvalidControllerPath' => ['description' => 'A invalid controller path throws a PathException', 'type' => 'framework'],624 'phpOMS\tests\Dispatcher\DispatcherTest:testInvalidControllerFunction' => ['description' => 'A invalid function path throws a Exception', 'type' => 'framework'],625 'phpOMS\tests\Dispatcher\DispatcherTest:testInvalidControllerString' => ['description' => 'A malformed dispatch path throws UnexpectedValueException', 'type' => 'framework'],626 'phpOMS\tests\Event\EventManagerTest' => ['description' => 'Event manager for managing and executing events', 'type' => 'framework'],627 'phpOMS\tests\Event\EventManagerTest:testDefault' => ['description' => 'The event manager has the expected default values after initialization', 'type' => 'framework'],628 'phpOMS\tests\Event\EventManagerTest:testAdd' => ['description' => 'New events can be added', 'type' => 'framework'],629 'phpOMS\tests\Event\EventManagerTest:testAddMultiple' => ['description' => 'Multiple callbacks can be added to an event', 'type' => 'framework'],630 'phpOMS\tests\Event\EventManagerTest:testDispatchAfterAllConditions' => ['description' => 'An event only gets executed if all conditions and sub conditions are met', 'type' => 'framework'],631 'phpOMS\tests\Event\EventManagerTest:testDispatchAfterSomeConditionsInvalid' => ['description' => 'An event doesn\'t get executed if not all conditions and sub conditions are met', 'type' => 'framework'],632 'phpOMS\tests\Event\EventManagerTest:testInvalidEventTrigger' => ['description' => 'None-existing events cannot be executed/triggered', 'type' => 'framework'],633 'phpOMS\tests\Event\EventManagerTest:testDispatchSimilarGroupAndId' => ['description' => 'An event can be triggered with group and id regex matches', 'type' => 'framework'],634 'phpOMS\tests\Event\EventManagerTest:testDispatchSimilarId' => ['description' => 'An event can be triggered with a fixed group definition and id regex matches', 'type' => 'framework'],635 'phpOMS\tests\Event\EventManagerTest:testDispatchSimilarGroup' => ['description' => ' An event can be triggered with regex group matches and fixed id definition', 'type' => 'framework'],636 'phpOMS\tests\Event\EventManagerTest:testDispatchSimilarInvalid' => ['description' => ' A invalid regex match will not triggered an event', 'type' => 'framework'],637 'phpOMS\tests\Event\EventManagerTest:testReset' => ['description' => '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', 'type' => 'framework'],638 'phpOMS\tests\Event\EventManagerTest:testNoeReset' => ['description' => 'An event can be defined to not reset after all conditions and subconditions are met. Then an event can be triggered any time.', 'type' => 'framework'],639 'phpOMS\tests\Event\EventManagerTest:testDetach' => ['description' => 'An event can be manually removed/detached', 'type' => 'framework'],640 'phpOMS\tests\Event\EventManagerTest:testInvalidDetach' => ['description' => 'None-existing events cannot be manually removed/detached', 'type' => 'framework'],641 'phpOMS\tests\Event\EventManagerTest:testRemove' => ['description' => 'An event can be defined to automatically remove itself after all conditions and subconditions are met and it is executed', 'type' => 'framework'],642 'phpOMS\tests\Event\EventManagerTest:testImportEvents' => ['description' => 'Events can be imported from a file', 'type' => 'framework'],643 'phpOMS\tests\Event\EventManagerTest:testInvalidImportEvents' => ['description' => 'Invalid event files cannot be imported and return a failure', 'type' => 'framework'],644 'phpOMS\tests\Localization\L11nManagerTest' => ['description' => 'Localization manager for view templates', 'type' => 'framework'],645 'phpOMS\tests\Localization\L11nManagerTest:testDefault' => ['description' => 'The localization manager has the expected default values after initialization', 'type' => 'framework'],646 'phpOMS\tests\Localization\L11nManagerTest:testLanguageInputOutput' => ['description' => 'Language data can be loaded and output as plain text or html', 'type' => 'framework'],647 'phpOMS\tests\Localization\L11nManagerTest:testLanguageFile' => ['description' => 'Language data can be loaded from a file', 'type' => 'framework'],648 'phpOMS\tests\Localization\L11nManagerTest:testGetNumeric' => ['description' => 'The numeric value can be printed based on the localization', 'type' => 'framework'],649 'phpOMS\tests\Localization\L11nManagerTest:testGetPercentage' => ['description' => 'The percentage value can be printed based on the localization', 'type' => 'framework'],650 'phpOMS\tests\Localization\L11nManagerTest:testGetCurrency' => ['description' => 'The currency value can be printed based on the localization', 'type' => 'framework'],651 'phpOMS\tests\Localization\L11nManagerTest:testGetDateTime' => ['description' => 'The datetime value can be printed based on the localization', 'type' => 'framework'],652 'phpOMS\tests\Localization\L11nManagerTest:testInvalidModule' => ['description' => 'Loading language for an invalid module throws Exception', 'type' => 'framework'],653 'phpOMS\tests\Localization\LocalizationTest' => ['description' => 'Localization for information such as language, currency, location, language specific formatting etc.', 'type' => 'framework'],654 'phpOMS\tests\Localization\LocalizationTest:testDefault' => ['description' => 'The localization has the expected default values after initialization', 'type' => 'framework'],655 'phpOMS\tests\Localization\LocalizationTest:testLanguageInputOutput' => ['description' => 'The language can be set and returned', 'type' => 'framework'],656 'phpOMS\tests\Localization\LocalizationTest:testInvalidLanguage' => ['description' => 'Setting a invalid language code throws InvalidEnumValue', 'type' => 'framework'],657 'phpOMS\tests\Localization\LocalizationTest:testCountryInputOutput' => ['description' => 'The country can be set and returned', 'type' => 'framework'],658 'phpOMS\tests\Localization\LocalizationTest:testInvalidCountry' => ['description' => 'Setting a invalid country code throws InvalidEnumValue', 'type' => 'framework'],659 'phpOMS\tests\Localization\LocalizationTest:testTimezoneInputOutput' => ['description' => 'The timezone can be set and returned', 'type' => 'framework'],660 'phpOMS\tests\Localization\LocalizationTest:testInvalidTimezone' => ['description' => 'Setting a invalid timezone code throws InvalidEnumValue', 'type' => 'framework'],661 'phpOMS\tests\Localization\LocalizationTest:testCurrencyInputOutput' => ['description' => 'The currency can be set and returned', 'type' => 'framework'],662 'phpOMS\tests\Localization\LocalizationTest:testInvalidCurrency' => ['description' => 'Setting a invalid currency code throws InvalidEnumValue', 'type' => 'framework'],663 'phpOMS\tests\Localization\LocalizationTest:testDatetimeInputOutput' => ['description' => 'The datetime can be set and returned', 'type' => 'framework'],664 'phpOMS\tests\Localization\LocalizationTest:testDecimalInputOutput' => ['description' => 'The decimal can be set and returned', 'type' => 'framework'],665 'phpOMS\tests\Localization\LocalizationTest:testThousandsInputOutput' => ['description' => 'The thousands can be set and returned', 'type' => 'framework'],666 'phpOMS\tests\Localization\LocalizationTest:testAngleInputOutput' => ['description' => 'The angle can be set and returned', 'type' => 'framework'],667 'phpOMS\tests\Localization\LocalizationTest:testInvalidAngle' => ['description' => 'Setting a invalid angle throws InvalidEnumValue', 'type' => 'framework'],668 'phpOMS\tests\Localization\LocalizationTest:testTemperatureInputOutput' => ['description' => 'The temperature can be set and returned', 'type' => 'framework'],669 'phpOMS\tests\Localization\LocalizationTest:testInvalidTemperature' => ['description' => 'Setting a invalid temperature throws InvalidEnumValue', 'type' => 'framework'],670 'phpOMS\tests\Localization\LocalizationTest:testWeightInputOutput' => ['description' => 'The weight can be set and returned', 'type' => 'framework'],671 'phpOMS\tests\Localization\LocalizationTest:testPrecisionInputOutput' => ['description' => 'The precision can be set and returned', 'type' => 'framework'],672 'phpOMS\tests\Localization\LocalizationTest:testLengthInputOutput' => ['description' => 'The length can be set and returned', 'type' => 'framework'],673 'phpOMS\tests\Localization\LocalizationTest:testAreaInputOutput' => ['description' => 'The area can be set and returned', 'type' => 'framework'],674 'phpOMS\tests\Localization\LocalizationTest:testVolumeInputOutput' => ['description' => 'The volume can be set and returned', 'type' => 'framework'],675 'phpOMS\tests\Localization\LocalizationTest:testSpeedInputOutput' => ['description' => 'The speed can be set and returned', 'type' => 'framework'],676 'phpOMS\tests\Localization\LocalizationTest:testLocalizationLoading' => ['description' => 'Localization data can be loaded from a locale file', 'type' => 'framework'],677 'phpOMS\tests\Localization\LocalizationTest:testLocalizationSerialize' => ['description' => 'Localization data can be serialized and unserialized', 'type' => 'framework'],678 'phpOMS\tests\Localization\LocalizationTest:testInvalidCountryLocalizationLoading' => ['description' => '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', 'type' => 'framework'],679 'phpOMS\tests\Localization\LocalizationTest:testMissingLocalizationLoading' => ['description' => 'By default the english locale file will be loaded if no other locale file can be found', 'type' => 'framework'],680 'phpOMS\tests\Localization\LocalizationTest:testInvalidLocalizationLoading' => ['description' => 'Loading localization data from a file with invalid language throws InvalidEnumValue', 'type' => 'framework'],681 'phpOMS\tests\Localization\Defaults\CityMapperTest' => ['description' => 'City database mapper', 'type' => 'framework'],682 'phpOMS\tests\Localization\Defaults\CityMapperTest:testR' => ['description' => 'The model can be read from the database', 'type' => 'framework'],683 'phpOMS\tests\Localization\Defaults\CityTest' => ['description' => 'City database model', 'type' => 'framework'],684 'phpOMS\tests\Localization\Defaults\CityTest:testDefaults' => ['description' => 'The model has the expected and default values', 'type' => 'framework'],685 'phpOMS\tests\Localization\Defaults\CountryMapperTest' => ['description' => 'Country database mapper', 'type' => 'framework'],686 'phpOMS\tests\Localization\Defaults\CountryMapperTest:testR' => ['description' => 'The model can be read from the database', 'type' => 'framework'],687 'phpOMS\tests\Localization\Defaults\CountryTest' => ['description' => 'Country database model', 'type' => 'framework'],688 'phpOMS\tests\Localization\Defaults\CountryTest:testDefaults' => ['description' => 'The model has the expected and default values', 'type' => 'framework'],689 'phpOMS\tests\Localization\Defaults\CurrencyMapperTest' => ['description' => 'Currency database mapper', 'type' => 'framework'],690 'phpOMS\tests\Localization\Defaults\CurrencyMapperTest:testR' => ['description' => 'The model can be read from the database', 'type' => 'framework'],691 'phpOMS\tests\Localization\Defaults\CurrencyTest' => ['description' => 'Currency database model', 'type' => 'framework'],692 'phpOMS\tests\Localization\Defaults\CurrencyTest:testDefaults' => ['description' => 'The model has the expected and default values', 'type' => 'framework'],693 'phpOMS\tests\Localization\Defaults\IbanMapperTest' => ['description' => 'Iban database mapper', 'type' => 'framework'],694 'phpOMS\tests\Localization\Defaults\IbanMapperTest:testR' => ['description' => 'The model can be read from the database', 'type' => 'framework'],695 'phpOMS\tests\Localization\Defaults\IbanTest' => ['description' => 'Iban database model', 'type' => 'framework'],696 'phpOMS\tests\Localization\Defaults\IbanTest:testDefaults' => ['description' => 'The model has the expected and default values', 'type' => 'framework'],697 'phpOMS\tests\Localization\Defaults\LanguageMapperTest' => ['description' => 'Language database mapper', 'type' => 'framework'],698 'phpOMS\tests\Localization\Defaults\LanguageMapperTest:testR' => ['description' => 'The model can be read from the database', 'type' => 'framework'],699 'phpOMS\tests\Localization\Defaults\LanguageTest' => ['description' => 'Language database model', 'type' => 'framework'],700 'phpOMS\tests\Localization\Defaults\LanguageTest:testDefaults' => ['description' => 'The model has the expected and default values', 'type' => 'framework'],701 'phpOMS\tests\Localization\MoneyTest' => ['description' => 'Money datatype for internal representation of money', 'type' => 'framework'],702 'phpOMS\tests\Localization\MoneyTest:testDefaultMemberVariables' => ['description' => 'The datatype has the expected member variables and default values', 'type' => 'framework'],703 'phpOMS\tests\Localization\MoneyTest:testMoneyDefaultStringRepresentation' => ['description' => 'The datatype returns the correct default string representation (#,###.##)', 'type' => 'framework'],704 'phpOMS\tests\Localization\MoneyTest:testMoneyDecimalPlaces' => ['description' => 'The datatype returns up to 4 decimal places if requested (#,###.####)', 'type' => 'framework'],705 'phpOMS\tests\Localization\MoneyTest:testMoneyStringToIntConversion' => ['description' => 'The datatype returns the correct integer representation of a string with up to 4 decimal places also considering differences in decimal and thousands characters if requested for different localizations', 'type' => 'framework'],706 'phpOMS\tests\Localization\MoneyTest:testCorrectValueChange' => ['description' => 'The datatype allows to modify the value by overwriting it with new string characters or integers correctly', 'type' => 'framework'],707 'phpOMS\tests\Localization\MoneyTest:testMoneyLocalization' => ['description' => 'The datatype can print out money with different thousands, decimals and currency symbols as per definition by the user', 'type' => 'framework'],708 'phpOMS\tests\Localization\MoneyTest:testMoneySerialization' => ['description' => 'The string character input is correctly serialized to the numeric representation', 'type' => 'framework'],709 'phpOMS\tests\Localization\MoneyTest:testMoneyUnserialization' => ['description' => 'The string character input is correctly unserialized from a numeric representation', 'type' => 'framework'],710 'phpOMS\tests\Localization\MoneyTest:testMoneyAddSub' => ['description' => 'The datatype correctly adds and subtracts the different money representations in string, numeric or Money type', 'type' => 'framework'],711 'phpOMS\tests\Localization\MoneyTest:testMoneyMultDiv' => ['description' => 'The datatype correctly multiplies and divides the money with numerics', 'type' => 'framework'],712 'phpOMS\tests\Localization\MoneyTest:testMoneyAbsoluteValue' => ['description' => 'The datatype correctly handles the absolute value', 'type' => 'framework'],713 'phpOMS\tests\Localization\MoneyTest:testMoneyPower' => ['description' => 'The datatype correctly handles the power operator', 'type' => 'framework'],714 'phpOMS\tests\Log\FileLoggerTest' => ['description' => 'File logger for saving log information in a local file', 'type' => 'framework'],715 'phpOMS\tests\Log\FileLoggerTest:testDefault' => ['description' => 'The logger has the expected default values after initialization', 'type' => 'framework'],716 'phpOMS\tests\Log\FileLoggerTest:testFileLoggerInstance' => ['description' => 'The file logger can automatically create a new instance if none exists', 'type' => 'framework'],717 'phpOMS\tests\Log\FileLoggerTest:testNamedLogFile' => ['description' => 'A log file for the output can be specified for the file logger', 'type' => 'framework'],718 'phpOMS\tests\Log\FileLoggerTest:testUnnamedLogFile' => ['description' => 'If no log file name is specified a log file per date is created', 'type' => 'framework'],719 'phpOMS\tests\Log\FileLoggerTest:testNoFileIfNoLog' => ['description' => 'If no logs are performed no log file will be created', 'type' => 'framework'],720 'phpOMS\tests\Log\FileLoggerTest:testLogInputOutput' => ['description' => 'Logs with different levels get correctly stored in the log file', 'type' => 'framework'],721 'phpOMS\tests\Log\FileLoggerTest:testPerpetrator' => ['description' => 'Log files can be analyzed for the highest perpetrator (IP address)', 'type' => 'framework'],722 'phpOMS\tests\Log\FileLoggerTest:testReadLogs' => ['description' => 'Logs can be read from the log file', 'type' => 'framework'],723 'phpOMS\tests\Log\FileLoggerTest:testInvalidReadLogs' => ['description' => 'Invalid log reads return empty log data', 'type' => 'framework'],724 'phpOMS\tests\Log\FileLoggerTest:testReadLine' => ['description' => 'A line can be read from a log file', 'type' => 'framework'],725 'phpOMS\tests\Log\FileLoggerTest:testInvalidReadLine' => ['description' => 'None-existing lines return on read empty log data', 'type' => 'framework'],726 'phpOMS\tests\Log\FileLoggerTest:testVerboseLogger' => ['description' => 'A verbose file logger automatically outputs log data', 'type' => 'framework'],727 'phpOMS\tests\Log\FileLoggerTest:testVerboseLog' => ['description' => 'A verbose console log outputs log data', 'type' => 'framework'],728 'phpOMS\tests\Log\FileLoggerTest:testTiming' => ['description' => 'The logger can perform timings for internal duration logging', 'type' => 'framework'],729 'phpOMS\tests\Log\FileLoggerTest:testLogException' => ['description' => 'A invalid log type throws a InvalidEnumValue', 'type' => 'framework'],730 'phpOMS\tests\Math\Functions\FibonacciTest' => ['description' => 'Fibonacci functions', 'type' => 'framework'],731 'phpOMS\tests\Math\Functions\FibonacciTest:testFibonacci' => ['description' => 'A number can be checked if it is a fibonacci number', 'type' => 'framework'],732 'phpOMS\tests\Math\Functions\FibonacciTest:testFibonacciByKey' => ['description' => 'A fibonacci number can be returned by index', 'type' => 'framework'],733 'phpOMS\tests\Math\Functions\FibonacciTest:testBinet' => ['description' => 'The binet formula returns fibonacci numbers', 'type' => 'framework'],734 'phpOMS\tests\Math\Functions\FibonacciTest:testBinetFib' => ['description' => 'The binet formula and the fibonacci formula return the same results', 'type' => 'framework'],735 'phpOMS\tests\Math\Functions\FunctionsTest' => ['description' => 'Various math functions', 'type' => 'framework'],736 'phpOMS\tests\Math\Functions\FunctionsTest:testFactorial' => ['description' => 'The factorial of a number can be calculated', 'type' => 'framework'],737 'phpOMS\tests\Math\Functions\FunctionsTest:testBinomialCoefficient' => ['description' => 'The binomial coefficient can be calculated', 'type' => 'framework'],738 'phpOMS\tests\Math\Functions\FunctionsTest:testAckermann' => ['description' => 'The ackerman function can be calculated', 'type' => 'framework'],739 'phpOMS\tests\Math\Functions\FunctionsTest:testMultiplicativeInverseModulo' => ['description' => 'The multiplicative inverse module can be calculated', 'type' => 'framework'],740 'phpOMS\tests\Math\Functions\FunctionsTest:testOdd' => ['description' => 'A number can be checked if it is odd', 'type' => 'framework'],741 'phpOMS\tests\Math\Functions\FunctionsTest:testEven' => ['description' => 'A number can be checked if it is even', 'type' => 'framework'],742 'phpOMS\tests\Math\Functions\FunctionsTest:testCircularPosition' => ['description' => 'The relative number can be calculated on a circular number system (e.g. month in a diverging business year)', 'type' => 'framework'],743 'phpOMS\tests\Math\Functions\FunctionsTest:testErf' => ['description' => 'The error function can be correctly approximated', 'type' => 'framework'],744 'phpOMS\tests\Math\Functions\FunctionsTest:testErfc' => ['description' => 'The complementary error function can be correctly approximated', 'type' => 'framework'],745 'phpOMS\tests\Math\Functions\FunctionsTest:testGeneralizedHypergeometricFunction' => ['description' => 'The generalized hypergeometric function can be correctly calculated', 'type' => 'framework'],746 'phpOMS\tests\Math\Functions\GammaTest' => ['description' => 'Gamma function', 'type' => 'framework'],747 'phpOMS\tests\Math\Functions\GammaTest:testGamma' => ['description' => 'The gamma function can be approximated', 'type' => 'framework'],748 'phpOMS\tests\Math\Functions\GammaTest:testFactorial' => ['description' => 'The gamma function can be calculated for integers', 'type' => 'framework'],749 'phpOMS\tests\Math\Functions\GammaTest:testApproximationSpouge' => ['description' => 'The gamma function can be approximated with the spouge formula', 'type' => 'framework'],750 'phpOMS\tests\Math\Functions\GammaTest:testApproximationStirling' => ['description' => 'The gamma function can be approximated with the stirling formula', 'type' => 'framework'],751 'phpOMS\tests\Math\Functions\GammaTest:testApproximationLanzos' => ['description' => 'The gamma function can be approximated with the lanzos formula', 'type' => 'framework'],752 'phpOMS\tests\Math\Functions\GammaTest:testLogGamma' => ['description' => 'The log gamma function can be approximated', 'type' => 'framework'],753 'phpOMS\tests\Math\Functions\GammaTest:testFirstIncompleteGamma' => ['description' => 'The first incomplete gamma function can be approximated', 'type' => 'framework'],754 'phpOMS\tests\Math\Functions\GammaTest:testSecondIncompleteGamma' => ['description' => 'The second incomplete gamma function can be approximated', 'type' => 'framework'],755 'phpOMS\tests\Math\Functions\GammaTest:testRegularizedGamma' => ['description' => 'The regularized incomplete gamma function can be approximated', 'type' => 'framework'],756 'phpOMS\tests\Math\Functions\BetaTest' => ['description' => 'Beta function', 'type' => 'framework'],757 'phpOMS\tests\Math\Functions\BetaTest:beta' => ['description' => 'The beta function can be approximated', 'type' => 'framework'],758 'phpOMS\tests\Math\Functions\BetaTest:testLogBeta' => ['description' => 'The log beta function can be approximated', 'type' => 'framework'],759 'phpOMS\tests\Math\Functions\BetaTest:testIncompleteBeta' => ['description' => 'The incomplete beta function can be approximated', 'type' => 'framework'],760 'phpOMS\tests\Math\Functions\BetaTest:testRegularizedBeta' => ['description' => 'The regularized beta function can be approximated', 'type' => 'framework'],761 'phpOMS\tests\Math\Geometry\ConvexHull\MonotoneChainTest' => ['description' => 'Monotone chain', 'type' => 'framework'],762 'phpOMS\tests\Math\Geometry\ConvexHull\MonotoneChainTest:testMonotoneChain' => ['description' => 'A convex hull can be formed from multiple points on a plane', 'type' => 'framework'],763 'phpOMS\tests\Math\Geometry\Shape\D2\CircleTest' => ['description' => 'Circle shape', 'type' => 'framework'],764 'phpOMS\tests\Math\Geometry\Shape\D2\CircleTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],765 'phpOMS\tests\Math\Geometry\Shape\D2\CircleTest:testPerimeter' => ['description' => 'The perimeter can be calculated', 'type' => 'framework'],766 'phpOMS\tests\Math\Geometry\Shape\D2\CircleTest:testRadiusBySurface' => ['description' => 'The radius can be calculated with the surface', 'type' => 'framework'],767 'phpOMS\tests\Math\Geometry\Shape\D2\CircleTest:testRadiusByPerimeter' => ['description' => 'The radius can be calculated with the perimeter', 'type' => 'framework'],768 'phpOMS\tests\Math\Geometry\Shape\D2\EllipseTest' => ['description' => 'Ellipse shape', 'type' => 'framework'],769 'phpOMS\tests\Math\Geometry\Shape\D2\EllipseTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],770 'phpOMS\tests\Math\Geometry\Shape\D2\EllipseTest:testPerimeter' => ['description' => 'The perimeter can be calculated', 'type' => 'framework'],771 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest' => ['description' => 'Polygon shape', 'type' => 'framework'],772 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testPoint' => ['description' => 'The location of a point can be checked relative to a polygon', 'type' => 'framework'],773 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testInteriorAngle' => ['description' => 'The interior angle can be calculated', 'type' => 'framework'],774 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testExteriorAngle' => ['description' => 'The exterior angle can be calculated', 'type' => 'framework'],775 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testPerimeter' => ['description' => 'The perimeter can be calculated', 'type' => 'framework'],776 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testArea' => ['description' => 'The area can be calculated', 'type' => 'framework'],777 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testBarycenter' => ['description' => 'The barycenter can be calculated', 'type' => 'framework'],778 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testRegularAreaByLength' => ['description' => 'The regular area can be calculated with the side length', 'type' => 'framework'],779 'phpOMS\tests\Math\Geometry\Shape\D2\PolygonTest:testRegularAreaByRadius' => ['description' => 'The regular area can be calculated with the radius', 'type' => 'framework'],780 'phpOMS\tests\Math\Geometry\Shape\D2\QuadrilateralTest' => ['description' => 'Quadrilateral shape', 'type' => 'framework'],781 'phpOMS\tests\Math\Geometry\Shape\D2\QuadrilateralTest:testArea' => ['description' => 'The area can be calculated', 'type' => 'framework'],782 'phpOMS\tests\Math\Geometry\Shape\D2\RectangleTest' => ['description' => 'Rectangle shape', 'type' => 'framework'],783 'phpOMS\tests\Math\Geometry\Shape\D2\RectangleTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],784 'phpOMS\tests\Math\Geometry\Shape\D2\RectangleTest:testPerimeter' => ['description' => 'The perimeter can be calculated', 'type' => 'framework'],785 'phpOMS\tests\Math\Geometry\Shape\D2\RectangleTest:testDiagonal' => ['description' => 'The diagonal can be calculated', 'type' => 'framework'],786 'phpOMS\tests\Math\Geometry\Shape\D2\TrapezoidTest' => ['description' => 'Trapezoid shape', 'type' => 'framework'],787 'phpOMS\tests\Math\Geometry\Shape\D2\TrapezoidTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],788 'phpOMS\tests\Math\Geometry\Shape\D2\TrapezoidTest:testPerimeter' => ['description' => 'The perimeter can be calculated', 'type' => 'framework'],789 'phpOMS\tests\Math\Geometry\Shape\D2\TrapezoidTest:testHeight' => ['description' => 'The height can be calculated', 'type' => 'framework'],790 'phpOMS\tests\Math\Geometry\Shape\D2\TrapezoidTest:testSideLength' => ['description' => 'The side lengths can be calculated', 'type' => 'framework'],791 'phpOMS\tests\Math\Geometry\Shape\D2\TriangleTest' => ['description' => 'Triangle shape', 'type' => 'framework'],792 'phpOMS\tests\Math\Geometry\Shape\D2\TriangleTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],793 'phpOMS\tests\Math\Geometry\Shape\D2\TriangleTest:testPerimeter' => ['description' => 'The perimeter can be calculated', 'type' => 'framework'],794 'phpOMS\tests\Math\Geometry\Shape\D2\TriangleTest:testHeight' => ['description' => 'The height can be calculated', 'type' => 'framework'],795 'phpOMS\tests\Math\Geometry\Shape\D2\TriangleTest:testHypot' => ['description' => 'The hypotenuse can be calculated', 'type' => 'framework'],796 'phpOMS\tests\Math\Geometry\Shape\D3\ConeTest' => ['description' => 'Cone shape', 'type' => 'framework'],797 'phpOMS\tests\Math\Geometry\Shape\D3\ConeTest:testVolume' => ['description' => 'The volume can be calculated', 'type' => 'framework'],798 'phpOMS\tests\Math\Geometry\Shape\D3\ConeTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],799 'phpOMS\tests\Math\Geometry\Shape\D3\ConeTest:testSlantHeight' => ['description' => 'The slant height can be calculated', 'type' => 'framework'],800 'phpOMS\tests\Math\Geometry\Shape\D3\ConeTest:testHeightFromVolume' => ['description' => 'The height can be calculated with the volume', 'type' => 'framework'],801 'phpOMS\tests\Math\Geometry\Shape\D3\CuboidTest' => ['description' => 'Cuboid shape', 'type' => 'framework'],802 'phpOMS\tests\Math\Geometry\Shape\D3\CuboidTest:testVolume' => ['description' => 'The volume can be calculated', 'type' => 'framework'],803 'phpOMS\tests\Math\Geometry\Shape\D3\CuboidTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],804 'phpOMS\tests\Math\Geometry\Shape\D3\CylinderTest' => ['description' => 'Cylinder shape', 'type' => 'framework'],805 'phpOMS\tests\Math\Geometry\Shape\D3\CylinderTest:testVolume' => ['description' => 'The volume can be calculated', 'type' => 'framework'],806 'phpOMS\tests\Math\Geometry\Shape\D3\CylinderTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],807 'phpOMS\tests\Math\Geometry\Shape\D3\CylinderTest:testLateralSurface' => ['description' => 'The lateral surface can be calculated', 'type' => 'framework'],808 'phpOMS\tests\Math\Geometry\Shape\D3\PrismTest' => ['description' => 'Prism shape', 'type' => 'framework'],809 'phpOMS\tests\Math\Geometry\Shape\D3\PrismTest:testVolumeByLength' => ['description' => 'The volume can be calculated with the length', 'type' => 'framework'],810 'phpOMS\tests\Math\Geometry\Shape\D3\PrismTest:testVolumeByRadius' => ['description' => 'The volume can be calculated with the radius', 'type' => 'framework'],811 'phpOMS\tests\Math\Geometry\Shape\D3\PrismTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],812 'phpOMS\tests\Math\Geometry\Shape\D3\RectangularPyramidTest' => ['description' => 'Rectangular pyramid shape', 'type' => 'framework'],813 'phpOMS\tests\Math\Geometry\Shape\D3\RectangularPyramidTest:testVolume' => ['description' => 'The volume can be calculated', 'type' => 'framework'],814 'phpOMS\tests\Math\Geometry\Shape\D3\RectangularPyramidTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],815 'phpOMS\tests\Math\Geometry\Shape\D3\RectangularPyramidTest:testLateralSurface' => ['description' => 'The lateral surface can be calculated', 'type' => 'framework'],816 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest' => ['description' => 'Sphere shape', 'type' => 'framework'],817 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest:testVolume' => ['description' => 'The volume can be calculated', 'type' => 'framework'],818 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],819 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest:testDistanceOnSphere' => ['description' => 'The distance on a sphere can be calculated', 'type' => 'framework'],820 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest:testGetSphereByRadius' => ['description' => 'The sphere can be created by its radius', 'type' => 'framework'],821 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest:testGetSphereByVolume' => ['description' => 'The sphere can be created by its volume', 'type' => 'framework'],822 'phpOMS\tests\Math\Geometry\Shape\D3\SphereTest:testGetSphereBySurface' => ['description' => 'The sphere can be created by its surface', 'type' => 'framework'],823 'phpOMS\tests\Math\Geometry\Shape\D3\TetrahedronTest' => ['description' => 'Tetrahedron shape', 'type' => 'framework'],824 'phpOMS\tests\Math\Geometry\Shape\D3\TetrahedronTest:testVolume' => ['description' => 'The volume can be calculated', 'type' => 'framework'],825 'phpOMS\tests\Math\Geometry\Shape\D3\TetrahedronTest:testSurface' => ['description' => 'The surface can be calculated', 'type' => 'framework'],826 'phpOMS\tests\Math\Geometry\Shape\D3\TetrahedronTest:testFaceArea' => ['description' => 'The face area can be calculated', 'type' => 'framework'],827 'phpOMS\tests\Math\Matrix\MatrixTest' => ['description' => 'Matrix operations'],828 'phpOMS\tests\Math\Matrix\MatrixTest:testBase' => ['description' => 'A matrix can return its dimension', 'type' => 'framework'],829 'phpOMS\tests\Math\Matrix\MatrixTest:testMultMatrix' => ['description' => 'A matrix can be right-hand multiplied with a matrix', 'type' => 'framework'],830 'phpOMS\tests\Math\Matrix\MatrixTest:testMultMatrixScalar' => ['description' => 'A matrix can be right-hand multiplied with a scalar', 'type' => 'framework'],831 'phpOMS\tests\Math\Matrix\MatrixTest:testAddScalar' => ['description' => 'A scalar can be added to every matrix element', 'type' => 'framework'],832 'phpOMS\tests\Math\Matrix\MatrixTest:testSubScalar' => ['description' => 'A scalar can be subtracted from every matrix element', 'type' => 'framework'],833 'phpOMS\tests\Math\Matrix\MatrixTest:testAddMatrix' => ['description' => 'Two matrices can be added to each other', 'type' => 'framework'],834 'phpOMS\tests\Math\Matrix\MatrixTest:testSubMatrix' => ['description' => 'Two matrices can be subtracted from each other', 'type' => 'framework'],835 'phpOMS\tests\Math\Matrix\MatrixTest:testDet' => ['description' => 'The determinant of a matrix can be calculated', 'type' => 'framework'],836 'phpOMS\tests\Math\Matrix\MatrixTest:testSymmetry' => ['description' => 'A symmetric matrix can be validated for symmetry', 'type' => 'framework'],837 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidSymmetry' => ['description' => 'A none-symmetric matrix cannot be validated for symmetry', 'type' => 'framework'],838 'phpOMS\tests\Math\Matrix\MatrixTest:testTranspose' => ['description' => 'A matrix can be transposed', 'type' => 'framework'],839 'phpOMS\tests\Math\Matrix\MatrixTest:testSolve' => ['description' => 'A matrix equation Ax = b can be solved for x', 'type' => 'framework'],840 'phpOMS\tests\Math\Matrix\MatrixTest:testRank' => ['description' => 'The rank of a matrix can be calculated', 'type' => 'framework'],841 'phpOMS\tests\Math\Matrix\MatrixTest:testUpperTriangular' => ['description' => 'The upper triangular matrix can be calculated', 'type' => 'framework'],842 'phpOMS\tests\Math\Matrix\MatrixTest:testMatrixInputOutput' => ['description' => 'The matrix elements can be set and returned', 'type' => 'framework'],843 'phpOMS\tests\Math\Matrix\MatrixTest:testArrayAccess' => ['description' => 'A matrix can be accessed like a 1-dimensional array', 'type' => 'framework'],844 'phpOMS\tests\Math\Matrix\MatrixTest:testMatrixExtract' => ['description' => 'Sub matrices can be extracted from a matrix', 'type' => 'framework'],845 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidSetIndexException' => ['description' => 'Setting a matrix element outside of the dimensions throws a InvalidDimensionException', 'type' => 'framework'],846 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidGetIndexException' => ['description' => 'Returning a matrix element outside of the dimensions throws a InvalidDimensionException', 'type' => 'framework'],847 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidSub' => ['description' => 'Subtracting a invalid data type from a matrix throws a InvalidArgumentException', 'type' => 'framework'],848 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidAdd' => ['description' => 'Adding a invalid data type to a matrix throws a InvalidArgumentException', 'type' => 'framework'],849 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidMult' => ['description' => 'Multiplying a invalid data type with a matrix throws a InvalidArgumentException', 'type' => 'framework'],850 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidDimensionAdd' => ['description' => 'Adding a matrix with a different dimension to a matrix throws a InvalidDimensionException', 'type' => 'framework'],851 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidDimensionSub' => ['description' => 'Subtracting a matrix from a different dimension to a matrix throws a InvalidDimensionException', 'type' => 'framework'],852 'phpOMS\tests\Math\Matrix\MatrixTest:testInvalidDimensionMult' => ['description' => 'SMultiplying a matrix with a different n x m dimension to a matrix throws a InvalidDimensionException', 'type' => 'framework'],853 'phpOMS\tests\Math\Matrix\IdentityMatrixTest' => ['description' => 'Matrix operations'],854 'phpOMS\tests\Math\Matrix\IdentityMatrixTest:testIdentity' => ['description' => 'The identity matrix is the identity', 'type' => 'framework'],855 'phpOMS\tests\Math\Matrix\VectorTest' => ['description' => 'Vector operations'],856 'phpOMS\tests\Math\Matrix\VectorTest:testDefault' => ['description' => 'The vector has the expected default values after initialization', 'type' => 'framework'],857 'phpOMS\tests\Math\Matrix\VectorTest:testValueInputOutput' => ['description' => 'The vector values can be set and returned', 'type' => 'framework'],858 'phpOMS\tests\Math\Matrix\VectorTest:testDim' => ['description' => 'A invalid vector throws a InvalidDimensionException', 'type' => 'framework'],859 'phpOMS\tests\Math\Matrix\CholeskyDecompositionTest' => ['description' => 'Cholesky decomposition'],860 'phpOMS\tests\Math\Matrix\CholeskyDecompositionTest:testDecomposition' => ['description' => 'The decomposition can be created and the original matrix can be computed', 'type' => 'framework'],861 'phpOMS\tests\Math\Matrix\CholeskyDecompositionTest:testL' => ['description' => 'The decomposition matrix has the expected values', 'type' => 'framework'],862 'phpOMS\tests\Math\Matrix\CholeskyDecompositionTest:testSymmetricPositive' => ['description' => 'A matrix can be checked for symmetric positivity', 'type' => 'framework'],863 'phpOMS\tests\Math\Matrix\CholeskyDecompositionTest:testSolve' => ['description' => 'The equation Ax = b can be solved', 'type' => 'framework'],864 'phpOMS\tests\Math\Matrix\CholeskyDecompositionTest:testInvalidDimension' => ['description' => 'A invalid vector throws a InvalidDimensionException', 'type' => 'framework'],865 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition' => ['description' => 'Eigenvalue decomposition'],866 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testSymmetricSymmetryMatrix' => ['description' => 'A matrix can be checked for symmetry', 'type' => 'framework'],867 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testSymmetricMatrixEigenvalues' => ['description' => 'The eigenvalues can be calculated for a symmetric matrix', 'type' => 'framework'],868 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testSymmetricMatrixV' => ['description' => 'The V matrix of the decomposition can be calculated for a symmetric matrix', 'type' => 'framework'],869 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testSymmetricMatrixD' => ['description' => 'The D matrix of the decomposition can be calculated for a symmetric matrix', 'type' => 'framework'],870 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testNonSymmetricMatrixEigenvalues' => ['description' => 'The eigenvalues can be calculated for a none-symmetric matrix', 'type' => 'framework'],871 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testNonSymmetricMatrixV' => ['description' => 'The V matrix of the decomposition can be calculated for a none-symmetric matrix', 'type' => 'framework'],872 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testNonSymmetricMatrixD' => ['description' => 'The D matrix of the decomposition can be calculated for a none-symmetric matrix', 'type' => 'framework'],873 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testCompositeSymmetric' => ['description' => 'The decomposition can be created and the original matrix can be computed for a symmetric matrix', 'type' => 'framework'],874 'phpOMS\tests\Math\Matrix\EigenvalueDecomposition:testCompositeNonSymmetric' => ['description' => 'The decomposition can be created and the original matrix can be computed for a none-symmetric matrix', 'type' => 'framework'],875 'phpOMS\tests\Math\Matrix\LUDecompositionTest' => ['description' => 'LU decomposition'],876 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testL' => ['description' => 'The L matrix of the decomposition can be calculated', 'type' => 'framework'],877 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testU' => ['description' => 'The U matrix of the decomposition can be calculated', 'type' => 'framework'],878 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testSingularity' => ['description' => 'The matrix can be checked for singularity', 'type' => 'framework'],879 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testSolve' => ['description' => 'The equation Ax = b can be solved for a none-singular matrix', 'type' => 'framework'],880 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testSolveOfSingularMatrix' => ['description' => 'The equation Ax = b can be solved for a singular matrix', 'type' => 'framework'],881 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testPivot' => ['description' => 'The pivots of the decomposition can be calculated', 'type' => 'framework'],882 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testComposition' => ['description' => 'The decomposition can be created and the original matrix can be computed', 'type' => 'framework'],883 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testDet' => ['description' => 'The determinat can be calculated', 'type' => 'framework'],884 'phpOMS\tests\Math\Matrix\LUDecompositionTest:testInvalidDimension' => ['description' => 'A invalid vector throws a InvalidDimensionException', 'type' => 'framework'],885 'phpOMS\tests\Math\Matrix\QRDecompositionTest' => ['description' => 'QR decomposition'],886 'phpOMS\tests\Math\Matrix\QRDecompositionTest:testRank' => ['description' => 'A matrix can be checked if it has a full rank', 'type' => 'framework'],887 'phpOMS\tests\Math\Matrix\QRDecompositionTest:testQ' => ['description' => 'The Q matrix of the decomposition can be calculated', 'type' => 'framework'],888 'phpOMS\tests\Math\Matrix\QRDecompositionTest:testR' => ['description' => 'The R matrix of the decomposition can be calculated', 'type' => 'framework'],889 'phpOMS\tests\Math\Matrix\QRDecompositionTest:testComposition' => ['description' => 'The decomposition can be created and the original matrix can be computed', 'type' => 'framework'],890 'phpOMS\tests\Math\Matrix\QRDecompositionTest:testSolve' => ['description' => 'The equation Ax = b can be solved', 'type' => 'framework'],891 'phpOMS\tests\Math\Number\ComplexTest' => ['description' => 'Complex number operations'],892 'phpOMS\tests\Math\Number\ComplexTest:testDefault' => ['description' => 'The complex number has the expected default values after initialization', 'type' => 'framework'],893 'phpOMS\tests\Math\Number\ComplexTest:testConstructorInputOutput' => ['description' => 'The real and imaginary part can be set during initialization and returned', 'type' => 'framework'],894 'phpOMS\tests\Math\Number\ComplexTest:testAddComplex' => ['description' => 'A complex number can be added to a complex number', 'type' => 'framework'],895 'phpOMS\tests\Math\Number\ComplexTest:testAddReal' => ['description' => 'A real number can be added to a complex number', 'type' => 'framework'],896 'phpOMS\tests\Math\Number\ComplexTest:testSubComplex' => ['description' => 'A complex number can be subtracted from a complex number', 'type' => 'framework'],897 'phpOMS\tests\Math\Number\ComplexTest:testSubReal' => ['description' => 'A real number can be subtracted from a complex number', 'type' => 'framework'],898 'phpOMS\tests\Math\Number\ComplexTest:testMultComplex' => ['description' => 'A complex number can be multiplied with a complex number', 'type' => 'framework'],899 'phpOMS\tests\Math\Number\ComplexTest:testMultReal' => ['description' => 'A real number can be multiplied with a complex number', 'type' => 'framework'],900 'phpOMS\tests\Math\Number\ComplexTest:testDivComplex' => ['description' => 'A complex number can be divided by a complex number number', 'type' => 'framework'],901 'phpOMS\tests\Math\Number\ComplexTest:testDivReal' => ['description' => 'A complex number can be divided by a real number', 'type' => 'framework'],902 'phpOMS\tests\Math\Number\ComplexTest:testConjugate' => ['description' => 'A complex number can be conjugated', 'type' => 'framework'],903 'phpOMS\tests\Math\Number\ComplexTest:testReciprocal' => ['description' => 'The reciprocal of a complex number can be calculated', 'type' => 'framework'],904 'phpOMS\tests\Math\Number\ComplexTest:testSquare' => ['description' => 'A complex number can be squared', 'type' => 'framework'],905 'phpOMS\tests\Math\Number\ComplexTest:testPower' => ['description' => 'The real power of a complex number can be calculated', 'type' => 'framework'],906 'phpOMS\tests\Math\Number\ComplexTest:testAbs' => ['description' => 'The absolute value of a complex number can be calculated', 'type' => 'framework'],907 'phpOMS\tests\Math\Number\ComplexTest:testSqrt' => ['description' => 'The square root of a complex number can be calculated', 'type' => 'framework'],908 'phpOMS\tests\Math\Number\ComplexTest:testInvalidAdd' => ['description' => 'A invalid type addition throws a InvalidArgumentException', 'type' => 'framework'],909 'phpOMS\tests\Math\Number\ComplexTest:testInvalidSub' => ['description' => 'A invalid type subtraction throws a InvalidArgumentException', 'type' => 'framework'],910 'phpOMS\tests\Math\Number\ComplexTest:testInvalidMult' => ['description' => 'A invalid type cannot multiplication throws a InvalidArgumentException', 'type' => 'framework'],911 'phpOMS\tests\Math\Number\ComplexTest:testInvalidDiv' => ['description' => 'A invalid type division throws a InvalidArgumentException', 'type' => 'framework'],912 'phpOMS\tests\Math\Number\ComplexTest:testInvalidPow' => ['description' => 'The power of a invalid type throws a InvalidArgumentException', 'type' => 'framework'],913 'phpOMS\tests\Math\Number\IntegerTest' => ['description' => 'Integer operations'],914 'phpOMS\tests\Math\Number\IntegerTest:testIsInteger' => ['description' => 'A value can be checked to be an integer', 'type' => 'framework'],915 'phpOMS\tests\Math\Number\IntegerTest:testFactorization' => ['description' => 'An integer can be factorized', 'type' => 'framework'],916 'phpOMS\tests\Math\Number\IntegerTest:testPollardsRho' => ['description' => 'The Pollard\'s Roh algorithm calculates a factor of an integer', 'type' => 'framework'],917 'phpOMS\tests\Math\Number\IntegerTest:testFermatFactor' => ['description' => 'The Fermat factorization calculates a factor of an integer', 'type' => 'framework'],918 'phpOMS\tests\Math\Number\IntegerTest:testInvalidFermatParameter' => ['description' => 'A even number for the fermat factorization throws a InvalidArgumentException', 'type' => 'framework'],919 'phpOMS\tests\Math\Number\IntegerTest:testGCD' => ['description' => 'The greatest common divisor can be calculated', 'type' => 'framework'],920 'phpOMS\tests\Math\Number\NaturalTest' => ['description' => 'Natural number operations'],921 'phpOMS\tests\Math\Number\NaturalTest:testIsNatural' => ['description' => 'A number can be checked to be natural', 'type' => 'framework'],922 'phpOMS\tests\Math\Number\NumbersTest' => ['description' => 'General number utilities'],923 'phpOMS\tests\Math\Number\NumbersTest:testPerfect' => ['description' => 'A number can be checked to be perfect', 'type' => 'framework'],924 'phpOMS\tests\Math\Number\NumbersTest:testSelfdescribing' => ['description' => 'A number can be checked to be self-describing', 'type' => 'framework'],925 'phpOMS\tests\Math\Number\NumbersTest:testSquare' => ['description' => 'A number can be checked to be squared', 'type' => 'framework'],926 'phpOMS\tests\Math\Number\NumbersTest:testZeroCounting' => ['description' => 'The amount of trailing zeros can be counted', 'type' => 'framework'],927 'phpOMS\tests\Math\Number\PrimeTest' => ['description' => 'Prime number utilities'],928 'phpOMS\tests\Math\Number\PrimeTest:testPrime' => ['description' => 'A number can be checked to be a prime number', 'type' => 'framework'],929 'phpOMS\tests\Math\Number\PrimeTest:testSieve' => ['description' => 'A prime number can be generated with the sieve of erathosthenes', 'type' => 'framework'],930 'phpOMS\tests\Math\Number\PrimeTest:testRabin' => ['description' => 'A number can be checked to be prime with the rabin test', 'type' => 'framework'],931 'phpOMS\tests\Math\Number\PrimeTest:testMersenne' => ['description' => 'Mersenne numbers can be calculated', 'type' => 'framework'],932 'phpOMS\tests\Math\Number\PrimeTest:testIsMersenne' => ['description' => 'A number can be checked to be a mersenne number', 'type' => 'framework'],933 'phpOMS\tests\Math\Topology\Metrics2DTest' => ['description' => 'Metric/distance calculations'],934 'phpOMS\tests\Math\Topology\Metrics2DTest:testManhattan' => ['description' => 'The manhattan distance can be calculated', 'type' => 'framework'],935 'phpOMS\tests\Math\Topology\Metrics2DTest:testEuclidean' => ['description' => 'The euclidean distance can be calculated', 'type' => 'framework'],936 'phpOMS\tests\Math\Topology\Metrics2DTest:testChebyshev' => ['description' => 'The chebyshev distance can be calculated', 'type' => 'framework'],937 'phpOMS\tests\Math\Topology\Metrics2DTest:testOctile' => ['description' => 'The octile distance can be calculated', 'type' => 'framework'],938 'phpOMS\tests\Math\Topology\Metrics2DTest:testMinkowski' => ['description' => 'The minkowski distance can be calculated', 'type' => 'framework'],939 'phpOMS\tests\Math\Topology\Metrics2DTest:testCanberra' => ['description' => 'The canberra distance can be calculated', 'type' => 'framework'],940 'phpOMS\tests\Math\Topology\Metrics2DTest:testBrayCurtis' => ['description' => 'The bray-curtis distance can be calculated', 'type' => 'framework'],941 'phpOMS\tests\Math\Topology\Metrics2DTest:testAngularSeparation' => ['description' => 'The angular distance can be calculated', 'type' => 'framework'],942 'phpOMS\tests\Math\Topology\Metrics2DTest:testHammingDistance' => ['description' => 'The hamming distance can be calculated', 'type' => 'framework'],943 'phpOMS\tests\Math\Topology\Metrics2DTest:testUlam' => ['description' => 'The ulam distance can be calculated', 'type' => 'framework'],944 'phpOMS\tests\Math\Topology\Metrics2DTest:testInvalidHammingDimension' => ['description' => 'Different dimension sizes for the coordinates in the hamming metric throw a InvalidDimensionException', 'type' => 'framework'],945 'phpOMS\tests\Math\Topology\Metrics2DTest:testInvalidUlamDimension' => ['description' => 'Different dimension sizes for the coordinates in the ulam metric throw a InvalidDimensionException', 'type' => 'framework'],946 'phpOMS\tests\Math\Topology\MetricsNDTest' => ['description' => 'Metric/distance calculations'],947 'phpOMS\tests\Math\Topology\MetricsNDTest:testManhattan' => ['description' => 'The manhattan distance can be calculated', 'type' => 'framework'],948 'phpOMS\tests\Math\Topology\MetricsNDTest:testEuclidean' => ['description' => 'The euclidean distance can be calculated', 'type' => 'framework'],949 'phpOMS\tests\Math\Topology\MetricsNDTest:testChebyshev' => ['description' => 'The chebyshev distance can be calculated', 'type' => 'framework'],950 'phpOMS\tests\Math\Topology\MetricsNDTest:testMinkowski' => ['description' => 'The minkowski distance can be calculated', 'type' => 'framework'],951 'phpOMS\tests\Math\Topology\MetricsNDTest:testCanberra' => ['description' => 'The canberra distance can be calculated', 'type' => 'framework'],952 'phpOMS\tests\Math\Topology\MetricsNDTest:testBrayCurtis' => ['description' => 'The bray-curtis distance can be calculated', 'type' => 'framework'],953 'phpOMS\tests\Math\Topology\MetricsNDTest:testAngularSeparation' => ['description' => 'The angular distance can be calculated', 'type' => 'framework'],954 'phpOMS\tests\Math\Topology\MetricsNDTest:testHammingDistance' => ['description' => 'The hamming distance can be calculated', 'type' => 'framework'],955 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidManhattanDimension' => ['description' => 'Different dimension sizes for the coordinates in the manhattan metric throw a InvalidDimensionException', 'type' => 'framework'],956 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidEuclideanDimension' => ['description' => 'Different dimension sizes for the coordinates in the euclidean metric throw a InvalidDimensionException', 'type' => 'framework'],957 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidChebyshevDimension' => ['description' => 'Different dimension sizes for the coordinates in the chebyshev metric throw a InvalidDimensionException', 'type' => 'framework'],958 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidMinkowskiDimension' => ['description' => 'Different dimension sizes for the coordinates in the minkowski metric throw a InvalidDimensionException', 'type' => 'framework'],959 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidCanberraDimension' => ['description' => 'Different dimension sizes for the coordinates in the canberra metric throw a InvalidDimensionException', 'type' => 'framework'],960 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidBrayCurtisDimension' => ['description' => 'Different dimension sizes for the coordinates in the Bray Curtis metric throw a InvalidDimensionException', 'type' => 'framework'],961 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidAngularSeparationDimension' => ['description' => 'Different dimension sizes for the coordinates in the angular separation metric throw a InvalidDimensionException', 'type' => 'framework'],962 'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidHammingDimension' => ['description' => 'Different dimension sizes for the coordinates in the hamming metric throw a InvalidDimensionException', 'type' => 'framework'],963 'phpOMS\tests\Math\Numerics\Interpolation\CubicSplineInterpolationTest' => ['description' => 'Cubic spline interpolation'],964 'phpOMS\tests\Math\Numerics\Interpolation\CubicSplineInterpolationTest:testInterpolationFirstDerivative' => ['description' => 'The spline interpolation using the first derivative is correct', 'type' => 'framework'],965 'phpOMS\tests\Math\Numerics\Interpolation\CubicSplineInterpolationTest:testInterpolationSecondDerivative' => ['description' => 'The spline interpolation using the second derivative is correct', 'type' => 'framework'],966 'phpOMS\tests\Math\Numerics\Interpolation\CubicSplineInterpolationTest:testInterpolationUnderOverflow' => ['description' => 'The spline interpolation for out of bounds values uses linear extrapolation', 'type' => 'framework'],967 'phpOMS\tests\Math\Numerics\Interpolation\LagrangeInterpolationTest' => ['description' => 'Lagrange interpolation'],968 'phpOMS\tests\Math\Numerics\Interpolation\LagrangeInterpolationTest:testInterpolation' => ['description' => 'The lagrange interpolation is correct', 'type' => 'framework'],969 'phpOMS\tests\Math\Numerics\Interpolation\LinearInterpolationTest' => ['description' => 'Linear interpolation'],970 'phpOMS\tests\Math\Numerics\Interpolation\LinearInterpolationTest:testInterpolation' => ['description' => 'The linear interpolation is correct', 'type' => 'framework'],971 'phpOMS\tests\Math\Numerics\IntegrationTest' => ['description' => 'Numeric integration'],972 'phpOMS\tests\Math\Numerics\IntegrationTest:testLRect' => ['description' => 'Integration by summing up rectangle areas from the left side', 'type' => 'framework'],973 'phpOMS\tests\Math\Numerics\IntegrationTest:testRRect' => ['description' => 'Integration by summing up rectangle areas from the right side', 'type' => 'framework'],974 'phpOMS\tests\Math\Numerics\IntegrationTest:testMRect' => ['description' => 'Integration by summing up rectangle areas from the middle', 'type' => 'framework'],975 'phpOMS\tests\Math\Numerics\IntegrationTest:testTrapeze' => ['description' => 'Integration by summing up trapezoid areas', 'type' => 'framework'],976 'phpOMS\tests\Math\Numerics\IntegrationTest:testSimpson' => ['description' => 'Integration by using the simpson formula', 'type' => 'framework'],977 'phpOMS\tests\Math\Parser\EvaluatorTest' => ['description' => 'Evaluator for simple math formulas'],978 'phpOMS\tests\Math\Parser\EvaluatorTest:testBasicEvaluation' => ['description' => 'Basic formulas using +, -, *, /, () and ^ can be evaluated', 'type' => 'framework'],979 'phpOMS\tests\Math\Parser\EvaluatorTest:testInvalidEvaluation' => ['description' => 'Badly formed formulas return null as result', 'type' => 'framework'],980 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest' => ['description' => 'Level level regression'],981 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testRegression' => ['description' => 'The regression parameters are calculated correctly', 'type' => 'framework'],982 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testSlope' => ['description' => 'The slope is calculated correctly', 'type' => 'framework'],983 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testElasticity' => ['description' => 'The elasticity is calculated correctly', 'type' => 'framework'],984 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testStandardErrorOfRegressionPopulation' => ['description' => 'The standard error of the population is calculated correctly', 'type' => 'framework'],985 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testStandardErrorOfRegressionSample' => ['description' => 'The standard error of the sample is calculated correctly', 'type' => 'framework'],986 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testPredictionInterval' => ['description' => 'The prediction interval is calculated correctly', 'type' => 'framework'],987 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLevelRegressionTest:testInvalidDimension' => ['description' => 'Different dimension sizes for x and y coordinates throw a InvalidDimensionException', 'type' => 'framework'],988 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLogRegressionTest' => ['description' => 'Level log regression'],989 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLogRegressionTest:testRegression' => ['description' => 'The regression parameters are calculated correctly', 'type' => 'framework'],990 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLogRegressionTest:testSlope' => ['description' => 'The slope is calculated correctly', 'type' => 'framework'],991 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLogRegressionTest:testElasticity' => ['description' => 'The elasticity is calculated correctly', 'type' => 'framework'],992 'phpOMS\tests\Math\Statistic\Forecast\Regression\LevelLogRegressionTest:testInvalidDimension' => ['description' => 'Different dimension sizes for x and y coordinates throw a InvalidDimensionException', 'type' => 'framework'],993 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLevelRegressionTest' => ['description' => 'Log level regression'],994 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLevelRegressionTest:testRegression' => ['description' => 'The regression parameters are calculated correctly', 'type' => 'framework'],995 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLevelRegressionTest:testSlope' => ['description' => 'The slope is calculated correctly', 'type' => 'framework'],996 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLevelRegressionTest:testElasticity' => ['description' => 'The elasticity is calculated correctly', 'type' => 'framework'],997 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLevelRegressionTest:testInvalidDimension' => ['description' => 'Different dimension sizes for x and y coordinates throw a InvalidDimensionException', 'type' => 'framework'],998 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLogRegressionTest' => ['description' => 'Log log regression'],999 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLogRegressionTest:testRegression' => ['description' => 'The regression parameters are calculated correctly', 'type' => 'framework'],1000 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLogRegressionTest:testSlope' => ['description' => 'The slope is calculated correctly', 'type' => 'framework'],1001 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLogRegressionTest:testElasticity' => ['description' => 'The elasticity is calculated correctly', 'type' => 'framework'],1002 'phpOMS\tests\Math\Statistic\Forecast\Regression\LogLogRegressionTest:testInvalidDimension' => ['description' => 'Different dimension sizes for x and y coordinates throw a InvalidDimensionException', 'type' => 'framework'],1003 'phpOMS\tests\Math\Statistic\Forecast\Regression\PolynomialRegressionTest' => ['description' => 'Polynomial regression'],1004 'phpOMS\tests\Math\Statistic\Forecast\Regression\PolynomialRegressionTest:testRegression' => ['description' => 'The regression parameters are calculated correctly', 'type' => 'framework'],1005 'phpOMS\tests\Math\Statistic\Forecast\Regression\PolynomialRegressionTest:testInvalidDimension' => ['description' => 'Different dimension sizes for x and y coordinates throw a InvalidDimensionException', 'type' => 'framework'],1006 'phpOMS\tests\Math\Stochastic\NaiveBayesClassifierTest' => ['description' => 'Naive bayes classifier for numeric values and strings/attributes'],1007 'phpOMS\tests\Math\Stochastic\NaiveBayesClassifierTest:testTextClassifier' => ['description' => 'The classification of strings/attributes is correct', 'type' => 'framework'],1008 'phpOMS\tests\Math\Stochastic\NaiveBayesClassifierTest:testNumericClassifier' => ['description' => 'The classification of numeric values is correct', 'type' => 'framework'],1009 'phpOMS\tests\Math\Statistic\AverageTest' => ['description' => 'Averages'],1010 'phpOMS\tests\Math\Statistic\AverageTest:testAverage' => ['description' => 'The average change of a dataset is correctly calculated', 'type' => 'framework'],1011 'phpOMS\tests\Math\Statistic\AverageTest:testAngleMean' => ['description' => 'The average mean of angles is calculated correctly', 'type' => 'framework'],1012 'phpOMS\tests\Math\Statistic\AverageTest:testArithmeticMean' => ['description' => 'The arithmetic mean is calculated correctly', 'type' => 'framework'],1013 'phpOMS\tests\Math\Statistic\AverageTest:testWeightedAverage' => ['description' => 'The weighted average is calculated correctly', 'type' => 'framework'],1014 'phpOMS\tests\Math\Statistic\AverageTest:testGeometricMean' => ['description' => 'The geometic mean is calculated correctly', 'type' => 'framework'],1015 'phpOMS\tests\Math\Statistic\AverageTest:testHarmonicMean' => ['description' => 'The harmonic mean is calculated correctly', 'type' => 'framework'],1016 'phpOMS\tests\Math\Statistic\AverageTest:testMovingAverage' => ['description' => 'The moving average is calculated correctly', 'type' => 'framework'],1017 'phpOMS\tests\Math\Statistic\AverageTest:testWeightedMovingAverage' => ['description' => 'The weighted moving average is calculated correctly', 'type' => 'framework'],1018 'phpOMS\tests\Math\Statistic\AverageTest:testInvalidWeightedAverageDimension' => ['description' => 'Different weight and dataset dimensions throw a InvalidDimensionException', 'type' => 'framework'],1019 'phpOMS\tests\Math\Statistic\AverageTest:testInvalidArithmeticMeanZeroDivision' => ['description' => 'An empty dataset for the arithmetic mean throws a ZeroDivisionException', 'type' => 'framework'],1020 'phpOMS\tests\Math\Statistic\AverageTest:testInvalidMovingAverageZeroDivision' => ['description' => 'An empty dataset for the moving average throws a Exception', 'type' => 'framework'],1021 'phpOMS\tests\Math\Statistic\AverageTest:testInvalidHarmonicMeanZeroDivision' => ['description' => 'An empty dataset for the harmonic mean throws a ZeroDivisionException', 'type' => 'framework'],1022 'phpOMS\tests\Math\Statistic\AverageTest:testInvalidGeometricMean' => ['description' => 'An empty dataset for the geometric mean throws a ZeroDivisionException', 'type' => 'framework'],1023 'phpOMS\tests\Math\Statistic\AverageTest:testInvalidHarmonicMean' => ['description' => 'A dataset with a 0 element throws a ZeroDivisionException', 'type' => 'framework'],1024 'phpOMS\tests\Math\Statistic\AverageTest:testMode' => ['description' => 'The mode is correctly calculated', 'type' => 'framework'],1025 'phpOMS\tests\Math\Statistic\AverageTest:testMedian' => ['description' => 'The median is correctly calculated', 'type' => 'framework'],1026 'phpOMS\tests\Math\Statistic\CorrelationTest' => ['description' => 'Correlations'],1027 'phpOMS\tests\Math\Statistic\CorrelationTest:testBravisPersonCorrelationCoefficientPopulation' => ['description' => 'The correlation coefficient (Bravis Person) is calculated correctly', 'type' => 'framework'],1028 'phpOMS\tests\Math\Statistic\CorrelationTest:testBravisPersonCorrelationCoefficientSample' => ['description' => 'The correlation coefficient (Bravis Person) is calculated correctly on a Sample', 'type' => 'framework'],1029 'phpOMS\tests\Math\Statistic\CorrelationTest:testAutocorrelationCoefficient' => ['description' => 'The autocorrelation coefficient is calculated correctly', 'type' => 'framework'],1030 'phpOMS\tests\Math\Statistic\CorrelationTest:testPortmanteauTestBoxPierce' => ['description' => 'The portmanteau test (Box Pierce) is correct', 'type' => 'framework'],1031 'phpOMS\tests\Math\Statistic\CorrelationTest:testPortmanteauTestLjungBox' => ['description' => 'The portmanteau test (Ljung Box) is correct', 'type' => 'framework'],1032 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest' => ['description' => 'Measure of dispersion'],1033 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testRange' => ['description' => 'The correlation coefficient (Bravis Person) is calculated correctly', 'type' => 'framework'],1034 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testStandardDeviationSample' => ['description' => 'The standard deviation is correctly calculated', 'type' => 'framework'],1035 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testEmpiricalCovariance' => ['description' => 'The empirical covariance is correctly calculated', 'type' => 'framework'],1036 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testSampleCovariance' => ['description' => 'The empirical covariance on a sample is correctly calculated', 'type' => 'framework'],1037 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testVarianceSample' => ['description' => 'The sample variance is correctly calculated', 'type' => 'framework'],1038 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testVariancePopulation' => ['description' => 'The population/empirical variance is correctly calculated', 'type' => 'framework'],1039 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testDeviation' => ['description' => 'The mean deviations are correctly calculated', 'type' => 'framework'],1040 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testDeviationArray' => ['description' => 'The mean deviations for every dataset element is correctly calculated', 'type' => 'framework'],1041 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testEmpiricalVariationCoefficient' => ['description' => 'The empirical variation coefficient is correctly calculated', 'type' => 'framework'],1042 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testIQR' => ['description' => 'The interquartile range is correctly calculated', 'type' => 'framework'],1043 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testInvalidEmpiricalVariationCoefficient' => ['description' => 'The empirical variation coefficient with a mean of 0 throws a ZeroDivisionException', 'type' => 'framework'],1044 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testInvalidEmpiricalCovariance' => ['description' => 'An empty dataset in the empirical covariance throws a ZeroDivisionException', 'type' => 'framework'],1045 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testInvalidEmpiricalCovarianceDimension' => ['description' => 'Different dataset sizes in the empirical covariance throw a InvalidDimensionException', 'type' => 'framework'],1046 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testInvalidSampleVariance' => ['description' => 'An empty dataset in the sample variance throws a ZeroDivisionException', 'type' => 'framework'],1047 'phpOMS\tests\Math\Statistic\MeasureOfDispersionTest:testInvalidEmpiricalVariance' => ['description' => 'An empty dataset in the empirical/population variance throws a ZeroDivisionException', 'type' => 'framework'],1048 'phpOMS\tests\Message\HeaderAbstractTest' => ['description' => 'Abstract header for requests/responses'],1049 'phpOMS\tests\Message\HeaderAbstractTest:testStatusCodeInputOutput' => ['description' => 'The the status code can be set and returned', 'type' => 'framework'],1050 'phpOMS\tests\Message\Http\HttpHeaderTest' => ['description' => 'Header for http requests/responses'],1051 'phpOMS\tests\Message\Http\HttpHeaderTest:testDefaults' => ['description' => 'The header has the expected default values after initialization', 'type' => 'framework'],1052 'phpOMS\tests\Message\Http\HttpHeaderTest:testSecurityHeader' => ['description' => 'Security policy headers get correctly identified', 'type' => 'framework'],1053 'phpOMS\tests\Message\Http\HttpHeaderTest:testDataInputOutput' => ['description' => 'Header data can be set, checked for existence and returned', 'type' => 'framework'],1054 'phpOMS\tests\Message\Http\HttpHeaderTest:testOverwrite' => ['description' => 'Header data can be forced to get overwritten', 'type' => 'framework'],1055 'phpOMS\tests\Message\Http\HttpHeaderTest:testInvalidOverwrite' => ['description' => 'By default header data doesn\'t get overwritten', 'type' => 'framework'],1056 'phpOMS\tests\Message\Http\HttpHeaderTest:testRemove' => ['description' => 'Header data can be removed', 'type' => 'framework'],1057 'phpOMS\tests\Message\Http\HttpHeaderTest:testInvalidRemove' => ['description' => 'None-existing header data cannot be removed', 'type' => 'framework'],1058 'phpOMS\tests\Message\Http\HttpHeaderTest:testAccountInputOutput' => ['description' => 'Account data can be set and returned', 'type' => 'framework'],1059 'phpOMS\tests\Message\Http\HttpHeaderTest:testDownloadable' => ['description' => 'Data can be defined as downloadable', 'type' => 'framework'],1060 'phpOMS\tests\Message\Http\HttpHeaderTest:testLockInputOutput' => ['description' => 'A header can be locked', 'type' => 'framework'],1061 'phpOMS\tests\Message\Http\HttpHeaderTest:testLockInvalidSet' => ['description' => 'A locked header cannot add new data', 'type' => 'framework'],1062 'phpOMS\tests\Message\Http\HttpHeaderTest:testLockInvalidRemove' => ['description' => 'A locked header cannot remove data', 'type' => 'framework'],1063 'phpOMS\tests\Message\Http\HttpHeaderTest:testHeaderGeneration' => ['description' => 'The header can generate default http headers based on status codes', 'type' => 'framework'],1064 'phpOMS\tests\Message\Http\HttpHeaderTest:testInvalidOverwriteSecurityHeader' => ['description' => 'Security header data cannot be changed once defined', 'type' => 'framework'],1065 'phpOMS\tests\Message\Http\HttpRequestTest' => ['description' => 'Request wrapper for http requests'],1066 'phpOMS\tests\Message\Http\HttpRequestTest:testDefault' => ['description' => 'The request has the expected default values after initialization', 'type' => 'framework'],1067 'phpOMS\tests\Message\Http\HttpRequestTest:testOSInputOutput' => ['description' => 'The OS can be set and returned', 'type' => 'framework'],1068 'phpOMS\tests\Message\Http\HttpRequestTest:testBrowserTypeInputOutput' => ['description' => 'The browser can be set and returned', 'type' => 'framework'],1069 'phpOMS\tests\Message\Http\HttpRequestTest:testRequestMethodInputOutput' => ['description' => 'The request method can be set and returned', 'type' => 'framework'],1070 'phpOMS\tests\Message\Http\HttpRequestTest:testRequestMethodToRouteVerb' => ['description' => 'The route verb gets correctly inferred from the request method', 'type' => 'framework'],1071 'phpOMS\tests\Message\Http\HttpRequestTest:testConstructInputOutput' => ['description' => 'The request is correctly constructed', 'type' => 'framework'],1072 'phpOMS\tests\Message\Http\HttpRequestTest:testHashingInputOutput' => ['description' => 'The url hashes for the different paths get correctly generated', 'type' => 'framework'],1073 'phpOMS\tests\Message\Http\HttpRequestTest:testDataInputOutput' => ['description' => 'Request data can be set and returned', 'type' => 'framework'],1074 'phpOMS\tests\Message\Http\HttpRequestTest:testOverwrite' => ['description' => 'Request data can be forcefully overwritten', 'type' => 'framework'],1075 'phpOMS\tests\Message\Http\HttpRequestTest:testInvalidOverwrite' => ['description' => 'Request data is not overwritten by default', 'type' => 'framework'],1076 'phpOMS\tests\Message\Http\HttpRequestTest:testUriInputOutput' => ['description' => 'The uri can be changed and returned', 'type' => 'framework'],1077 'phpOMS\tests\Message\Http\HttpRequestTest:testDataJsonRead' => ['description' => 'Json data can be read from the request', 'type' => 'framework'],1078 'phpOMS\tests\Message\Http\HttpRequestTest:testEmptyDataJsonRead' => ['description' => 'None-existing json data reads return empty data', 'type' => 'framework'],1079 'phpOMS\tests\Message\Http\HttpRequestTest:testInvalidDataJsonRead' => ['description' => 'Invalid json data returns empty data', 'type' => 'framework'],1080 'phpOMS\tests\Message\Http\HttpRequestTest:testDataList' => ['description' => 'List data can be read from the request', 'type' => 'framework'],1081 'phpOMS\tests\Message\Http\HttpRequestTest:testEmptyDataList' => ['description' => 'None-existing list data reads return empty data', 'type' => 'framework'],1082 'phpOMS\tests\Message\Http\HttpRequestTest:testDataLike' => ['description' => 'Request data can be read with pattern matching', 'type' => 'framework'],1083 'phpOMS\tests\Message\Http\HttpRequestTest:testInvalidDataLikeMatch' => ['description' => 'In case of no pattern matches empty data is returned', 'type' => 'framework'],1084 'phpOMS\tests\Message\Http\HttpRequestTest:testToString' => ['description' => 'A request with a path can be correctly casted to a string', 'type' => 'framework'],1085 'phpOMS\tests\Message\Http\HttpRequestTest:testToStringData' => ['description' => 'A request with a path and manually added data can be correctly casted to a string', 'type' => 'framework'],1086 'phpOMS\tests\Message\Http\HttpRequestTest:testToStringGetData' => ['description' => 'A request with a path, query parameters and manually added data can be correctly casted to a string', 'type' => 'framework'],1087 'phpOMS\tests\Message\Http\HttpRequestTest:testRestRequest' => ['description' => 'A rest request can be made from a request and the result can be read', 'type' => 'framework'],1088 'phpOMS\tests\Message\Http\HttpRequestTest:testPostData' => ['description' => 'A request can be made with post data', 'type' => 'framework'],1089 'phpOMS\tests\Message\Http\HttpRequestTest:testJsonData' => ['description' => 'A request can be made with json data', 'type' => 'framework'],1090 'phpOMS\tests\Message\Http\HttpRequestTest:testMultipartData' => ['description' => 'A request can be made with multipart data', 'type' => 'framework'],1091 'phpOMS\tests\Message\Http\HttpRequestTest:testLocale' => ['description' => 'If no locale can be identified en_US is returned', 'type' => 'framework'],1092 'phpOMS\tests\Message\Http\HttpRequestTest:testMobile' => ['description' => 'A none-mobile request is recognized as none-mobile', 'type' => 'framework'],1093 'phpOMS\tests\Message\Http\HttpRequestTest:testOS' => ['description' => 'If the OS type is unknown a unknwon OS type is returned', 'type' => 'framework'],1094 'phpOMS\tests\Message\Http\HttpRequestTest:testBrowser' => ['description' => 'If the browser type is unknown a unknwon browser type is returned', 'type' => 'framework'],1095 'phpOMS\tests\Message\Http\HttpRequestTest:testInvalidHttpsPort' => ['description' => 'A invalid https port throws a OutOfRangeException', 'type' => 'framework'],1096 'phpOMS\tests\Message\Http\HttpRequestTest:testInvalidRouteVerb' => ['description' => 'A Invalid route verb throws a Exception', 'type' => 'framework'],1097 'phpOMS\tests\Message\ResponseAbstractTest' => ['description' => 'Response wrapper for http responses'],1098 'phpOMS\tests\Message\ResponseAbstractTest:testDefault' => ['description' => 'The response has the expected default values after initialization', 'type' => 'framework'],1099 'phpOMS\tests\Message\ResponseAbstractTest:testJsonSerialize' => ['description' => 'The response can be json serialized', 'type' => 'framework'],1100 'phpOMS\tests\Message\ResponseAbstractTest:testDataInputOutput' => ['description' => 'Data can be set and returned for the response', 'type' => 'framework'],1101 'phpOMS\tests\Message\Http\HttpResponseTest' => ['description' => 'Response wrapper for http responses'],1102 'phpOMS\tests\Message\Http\HttpResponseTest:testDefault' => ['description' => 'The response has the expected default values after initialization', 'type' => 'framework'],1103 'phpOMS\tests\Message\Http\HttpResponseTest:testResponseInputOutput' => ['description' => 'Response data can be set and returned', 'type' => 'framework'],1104 'phpOMS\tests\Message\Http\HttpResponseTest:testRemove' => ['description' => 'Response data can be removed', 'type' => 'framework'],1105 'phpOMS\tests\Message\Http\HttpResponseTest:testInvalidRemove' => ['description' => 'None-existing response data cannot be removed', 'type' => 'framework'],1106 'phpOMS\tests\Message\Http\HttpResponseTest:testToArray' => ['description' => 'Response data can be turned into an array', 'type' => 'framework'],1107 'phpOMS\tests\Message\Http\HttpResponseTest:testJsonRender' => ['description' => 'A response with json as content-type is automatically rendered as json data', 'type' => 'framework'],1108 'phpOMS\tests\Message\Http\HttpResponseTest:testJsonDataDecode' => ['description' => 'Json data can be decoded from the response data', 'type' => 'framework'],1109 'phpOMS\tests\Message\Http\HttpResponseTest:testMinimizedRender' => ['description' => 'A html response can be forced to minimize the content by removing newlines and whitespaces', 'type' => 'framework'],1110 'phpOMS\tests\Message\Http\HttpResponseTest:testInvalidMinimizedRender' => ['description' => 'None-html responses cannot be forced to minimize the content by removing newlines and whitespaces', 'type' => 'framework'],1111 'phpOMS\tests\Message\Http\HttpResponseTest:testInvalidResponseDataToArray' => ['description' => 'Invalid response data results in an empty array', 'type' => 'framework'],1112 'phpOMS\tests\Message\Http\HttpResponseTest:testInvalidResponseDataRender' => ['description' => 'Invalid response data results in an empty render', 'type' => 'framework'],1113 'phpOMS\tests\Message\Http\RestTest' => ['description' => 'Rest request wrapper'],1114 'phpOMS\tests\Message\Http\RestTest:testRequest' => ['description' => 'A get request successfully returns the expected result', 'type' => 'framework'],1115 'phpOMS\tests\Message\Http\RestTest:testPost' => ['description' => 'A post request with data successfully returns the expected result', 'type' => 'framework'],1116 'phpOMS\tests\Message\Http\RestTest:testPut' => ['description' => 'A put request with data successfully returns the expected result', 'type' => 'framework'],1117 'phpOMS\tests\Message\Http\RestTest:testDelete' => ['description' => 'A delete request with data successfully returns the expected result', 'type' => 'framework'],1118 'phpOMS\tests\Message\Http\RestTest:testGet' => ['description' => 'A get request with data successfully returns the expected result', 'type' => 'framework'],1119 'phpOMS\tests\Model\Html\FormElementGeneratorTest' => ['description' => 'Form element generator'],1120 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateTextInput' => ['description' => 'A text input element can be generated', 'type' => 'framework'],1121 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateTextInputWithValue' => ['description' => 'A text input element can be generated with a custom value', 'type' => 'framework'],1122 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateDateTimeInput' => ['description' => 'A datetime input element can be generated with custom formatting', 'type' => 'framework'],1123 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateCheckboxInput' => ['description' => 'A checkbox element can be generated', 'type' => 'framework'],1124 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateCheckboxWithLanguageInput' => ['description' => 'A checkbox element can be generated with a localized label element', 'type' => 'framework'],1125 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateRadioInput' => ['description' => 'A radio element can be generated', 'type' => 'framework'],1126 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateRadioWithLanguageInput' => ['description' => 'A radio element can be generated with a localized label element', 'type' => 'framework'],1127 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateLabel' => ['description' => 'A label element can be generated', 'type' => 'framework'],1128 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateWithLanguageLabel' => ['description' => 'A localized label element can be generated', 'type' => 'framework'],1129 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateTextarea' => ['description' => 'A textarea element can be generated', 'type' => 'framework'],1130 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateWithValueTextarea' => ['description' => 'A textarea element can be generated with a custom value', 'type' => 'framework'],1131 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateSelect' => ['description' => 'A select element can be generated', 'type' => 'framework'],1132 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testGenerateWithLanguageSelect' => ['description' => 'A localized select element can be generated', 'type' => 'framework'],1133 'phpOMS\tests\Model\Html\FormElementGeneratorTest:testInvalidElementType' => ['description' => 'A missing or invalid element type generates a INVALID output', 'type' => 'framework'],1134 'phpOMS\tests\Model\Html\HeadTest' => ['description' => 'Html head'],1135 'phpOMS\tests\Model\Html\HeadTest:testDefault' => ['description' => 'The head has the expected default values after initialization', 'type' => 'framework'],1136 'phpOMS\tests\Model\Html\HeadTest:testTitleInputOutput' => ['description' => 'The title can be set and returned', 'type' => 'framework'],1137 'phpOMS\tests\Model\Html\HeadTest:testStyleInputOutput' => ['description' => 'The style can be set and returned', 'type' => 'framework'],1138 'phpOMS\tests\Model\Html\HeadTest:testScriptInputOutput' => ['description' => 'The script can be set and returned', 'type' => 'framework'],1139 'phpOMS\tests\Model\Html\HeadTest:testLanguageInputOutput' => ['description' => 'The language can be set and returned', 'type' => 'framework'],1140 'phpOMS\tests\Model\Html\HeadTest:testAssetRender' => ['description' => 'The assets can be set and rendered', 'type' => 'framework'],1141 'phpOMS\tests\Model\Html\HeadTest:testAssetLateRender' => ['description' => 'The assets can be set and rendered at the end of the document', 'type' => 'framework'],1142 'phpOMS\tests\Model\Html\HeadTest:testAssetRenderWithAttribute' => ['description' => 'The assets can be set and rendered with attributes', 'type' => 'framework'],1143 'phpOMS\tests\Model\Html\HeadTest:testAssetLateRenderWithAttribute' => ['description' => 'The assets can be set and rendered at the end of the document with attributes', 'type' => 'framework'],1144 'phpOMS\tests\Model\Html\MetaTest' => ['description' => 'Html meta data'],1145 'phpOMS\tests\Model\Html\MetaTest:testDefault' => ['description' => 'The meta data has the expected default values after initialization', 'type' => 'framework'],1146 'phpOMS\tests\Model\Html\MetaTest:testKeywordInputOutput' => ['description' => 'A keyword can be added and returned', 'type' => 'framework'],1147 'phpOMS\tests\Model\Html\MetaTest:testAuthorInputOutput' => ['description' => 'The author can be set and returned', 'type' => 'framework'],1148 'phpOMS\tests\Model\Html\MetaTest:testCharsetInputOutput' => ['description' => 'The charset can be set and returned', 'type' => 'framework'],1149 'phpOMS\tests\Model\Html\MetaTest:testDescriptionInputOutput' => ['description' => 'The description can be set and returned', 'type' => 'framework'],1150 'phpOMS\tests\Model\Html\MetaTest:testPropertyInputOutput' => ['description' => 'A property can be set and returned', 'type' => 'framework'],1151 'phpOMS\tests\Model\Html\MetaTest:testItempropInputOutput' => ['description' => 'A itemprop can be set and returned', 'type' => 'framework'],1152 'phpOMS\tests\Model\Html\MetaTest:testNameInputOutput' => ['description' => 'A name can be set and returned', 'type' => 'framework'],1153 'phpOMS\tests\Model\Html\MetaTest:testRender' => ['description' => 'The meta data can be rendered', 'type' => 'framework'],1154 'phpOMS\tests\Module\ModuleInfoTest' => ['description' => 'Module info file manager'],1155 'phpOMS\tests\Module\ModuleInfoTest:testLoad' => ['description' => 'A info file can be correctly loaded', 'type' => 'framework'],1156 'phpOMS\tests\Module\ModuleInfoTest:testChange' => ['description' => 'A info file can be modified', 'type' => 'framework'],1157 'phpOMS\tests\Module\ModuleInfoTest:testInvalidPathLoad' => ['description' => 'A invalid info file path load throws a PathException', 'type' => 'framework'],1158 'phpOMS\tests\Module\ModuleInfoTest:testInvalidPathUpdate' => ['description' => 'A invalid info file path update throws a PathException', 'type' => 'framework'],1159 'phpOMS\tests\Module\ModuleInfoTest:testInvalidDataSet' => ['description' => 'A invalid change data throws a InvalidArgumentException', 'type' => 'framework'],1160 'phpOMS\tests\Module\ModuleManagerTest' => ['description' => 'Manager for the module system'],1161 'phpOMS\tests\Module\ModuleManagerTest:testAttributes' => ['description' => 'The module manager has the expected attributes', 'type' => 'framework'],1162 'phpOMS\tests\Module\ModuleManagerTest:testUnknownModuleInit' => ['description' => 'Invalid module initializations returns a null module', 'type' => 'framework'],1163 'phpOMS\tests\Module\ModuleManagerTest:testUnknownModuleGet' => ['description' => 'Unknown modules return a null module', 'type' => 'framework'],1164 'phpOMS\tests\Module\ModuleManagerTest:testUnknwonModuleStatusChange' => ['description' => 'Unknown modules cannot get activated, deactivated', 'type' => 'framework'],1165 'phpOMS\tests\Module\ModuleManagerTest:testStatus' => ['description' => 'A module can be installed and its status can be changed', 'type' => 'framework'],1166 'phpOMS\tests\Module\ModuleManagerTest:testReInit' => ['description' => 'A module can be re-initialized', 'type' => 'framework'],1167 'phpOMS\tests\Module\ModuleManagerTest:testRequestLoad' => ['description' => 'A module is automatically loaded for its URIs', 'type' => 'framework'],1168 'phpOMS\tests\Module\ModuleManagerTest:testAllActiveModules' => ['description' => 'Active modules can be returned', 'type' => 'framework'],1169 'phpOMS\tests\Module\ModuleManagerTest:testActiveModule' => ['description' => 'Modules can be checked to be active', 'type' => 'framework'],1170 'phpOMS\tests\Module\ModuleManagerTest:testRunningModule' => ['description' => 'Modules can be checked to be running', 'type' => 'framework'],1171 'phpOMS\tests\Module\ModuleManagerTest:testAllModules' => ['description' => 'All available modules can be returned', 'type' => 'framework'],1172 'phpOMS\tests\Module\ModuleManagerTest:testInstalledModules' => ['description' => 'Installed modules can be returned', 'type' => 'framework'],1173 'phpOMS\tests\Module\ModuleManagerTest:testAdminModule' => ['description' => 'The valid module can be returned', 'type' => 'framework'],1174 'phpOMS\tests\Module\ModuleManagerTest:testUninstall' => ['description' => 'A module can be uninstalled', 'type' => 'framework'],1175 'phpOMS\tests\Module\ModuleAbstractTest' => ['description' => 'Abstract module'],1176 'phpOMS\tests\Module\ModuleAbstractTest:testConstants' => ['description' => 'The constant values of the abstract module are overwritten by the extension', 'type' => 'framework'],1177 'phpOMS\tests\Module\ModuleAbstractTest:testName' => ['description' => 'The name of the module can be returned', 'type' => 'framework'],1178 'phpOMS\tests\Module\ModuleAbstractTest:testDependencies' => ['description' => 'The dependencies of the module can be returned', 'type' => 'framework'],1179 'phpOMS\tests\Module\ModuleAbstractTest:testProviding' => ['description' => 'The providing of the module can be returned', 'type' => 'framework'],1180 'phpOMS\tests\Module\ModuleAbstractTest:testInvalidLocalization' => ['description' => 'A invalid language or theme returns in an empty localization/language dataset', 'type' => 'framework'],1181 'phpOMS\tests\Module\ModuleAbstractTest:testFillJson' => ['description' => 'The module can automatically generate a json response based on provided data for the frontend', 'type' => 'framework'],1182 'phpOMS\tests\Module\ModuleAbstractTest:testFillJsonRaw' => ['description' => 'The module can automatically generate a json response based on provided data', 'type' => 'framework'],1183 'phpOMS\tests\Module\ModuleAbstractTest:testModelCreate' => ['description' => 'A model can be created', 'type' => 'framework'],1184 'phpOMS\tests\Module\ModuleAbstractTest:testModelsCreate' => ['description' => 'Multiple models can be generated', 'type' => 'framework'],1185 'phpOMS\tests\Module\ModuleAbstractTest:testModelUpdate' => ['description' => 'A model can be updated', 'type' => 'framework'],1186 'phpOMS\tests\Module\ModuleAbstractTest:testModelDelete' => ['description' => 'A model can be deleted', 'type' => 'framework'],1187 'phpOMS\tests\Module\ModuleAbstractTest:testModelRelation' => ['description' => 'A model relation can be created', 'type' => 'framework'],1188 'phpOMS\tests\Module\NullModuleTest' => ['description' => 'Basic module functionality'],1189 'phpOMS\tests\Module\NullModuleTest:testInvalidModuleMethodCalls' => ['description' => 'A invalid module method call will create an error log', 'type' => 'framework'],1190 'phpOMS\tests\Module\PackageManagerTest' => ['description' => 'Manager for install/update packages'],1191 'phpOMS\tests\Module\PackageManagerTest:testPackageValidInstall' => ['description' => 'A package can be installed', 'type' => 'framework'],1192 'phpOMS\tests\Module\PackageManagerTest:testNotExtractedLoad' => ['description' => 'A package which didn\'t get extracted cannot be loaded and throws a PathException', 'type' => 'framework'],1193 'phpOMS\tests\Module\PackageManagerTest:testInvalidInstall' => ['description' => 'A invalid package cannot be installed and throws a Exception', 'type' => 'framework'],1194 'phpOMS\tests\Module\PackageManagerTest:testPackageInvalidKey' => ['description' => 'A invalid package key doesn\'t validate the package', 'type' => 'framework'],1195 'phpOMS\tests\Module\PackageManagerTest:testPackageInvalidContent' => ['description' => 'A invalid package content doesn\'t validate the package', 'type' => 'framework'],1196 'phpOMS\tests\Module\PackageManagerTest:testCleanup' => ['description' => 'The temporarily extracted package can be cleaned up', 'type' => 'framework'],1197 'phpOMS\tests\Router\WebRouterTest' => ['description' => 'Router for web requests'],1198 'phpOMS\tests\Router\WebRouterTest:testDefault' => ['description' => 'The route result for an empty request is empty', 'type' => 'framework'],1199 'phpOMS\tests\Router\WebRouterTest:testInvalidRoutingFile' => ['description' => 'A none-existing routing file cannot be imported', 'type' => 'framework'],1200 'phpOMS\tests\Router\WebRouterTest:testLoadingRoutesFromFile' => ['description' => 'A existing routing file can be imported', 'type' => 'framework'],1201 'phpOMS\tests\Router\WebRouterTest:testRouteMatching' => ['description' => 'A matching route returns the destinations', 'type' => 'framework'],1202 'phpOMS\tests\Router\WebRouterTest:testRouteMissMatchingForInvalidVerbs' => ['description' => 'Invalid routing verbs don\'t match even if the route matches', 'type' => 'framework'],1203 'phpOMS\tests\Router\WebRouterTest:testDynamicRouteAdding' => ['description' => 'Routes can be added dynamically', 'type' => 'framework'],1204 'phpOMS\tests\Router\WebRouterTest:testWithCSRF' => ['description' => 'Routes which require a CSRF token can only match with a CSRF token', 'type' => 'framework'],1205 'phpOMS\tests\Router\WebRouterTest:testWithoutCSRF' => ['description' => 'Routes which require a CSRF token don\'t match without a CSRF token', 'type' => 'framework'],1206 'phpOMS\tests\Router\WebRouterTest:testWithValidPermissions' => ['description' => 'Routes only match if the permissions match', 'type' => 'framework'],1207 'phpOMS\tests\Router\WebRouterTest:testWithInvalidPermissions' => ['description' => 'Routes don\'t match if the permissions don\'t match', 'type' => 'framework'],1208 'phpOMS\tests\Router\WebRouterTest:testDataValidation' => ['description' => 'A data validation pattern validates matches correctly', 'type' => 'framework'],1209 'phpOMS\tests\Router\WebRouterTest:testInvalidDataValidation' => ['description' => 'A data validation pattern invalidates missmatches', 'type' => 'framework'],1210 'phpOMS\tests\Router\WebRouterTest:testDataFromPattern' => ['description' => 'A uri can be used for data population', 'type' => 'framework'],1211 'phpOMS\tests\Router\SocketRouterTest' => ['description' => 'Router for socket requests'],1212 'phpOMS\tests\Router\SocketRouterTest:testDefault' => ['description' => 'The route result for an empty request is empty', 'type' => 'framework'],1213 'phpOMS\tests\Router\SocketRouterTest:testInvalidRoutingFile' => ['description' => 'A none-existing routing file cannot be imported', 'type' => 'framework'],1214 'phpOMS\tests\Router\SocketRouterTest:testLoadingRoutesFromFile' => ['description' => 'A existing routing file can be imported', 'type' => 'framework'],1215 'phpOMS\tests\Router\SocketRouterTest:testRouteMatching' => ['description' => 'A matching route returns the destinations', 'type' => 'framework'],1216 'phpOMS\tests\Router\SocketRouterTest:testDynamicRouteAdding' => ['description' => 'Routes can be added dynamically', 'type' => 'framework'],1217 'phpOMS\tests\Router\SocketRouterTest:testWithValidPermissions' => ['description' => 'Routes only match if the permissions match', 'type' => 'framework'],1218 'phpOMS\tests\Router\SocketRouterTest:testWithInvalidPermissions' => ['description' => 'Routes don\'t match if the permissions don\'t match', 'type' => 'framework'],1219 'phpOMS\tests\Security\PhpCodeTest' => ['description' => 'Basic php source code security inspection'],1220 'phpOMS\tests\Security\PhpCodeTest:testHasUnicode' => ['description' => 'A file with unicode characters gets correctly identified', 'type' => 'framework'],1221 'phpOMS\tests\Security\PhpCodeTest:testHasNoUnicode' => ['description' => 'A file with no unicode characters gets correctly identified', 'type' => 'framework'],1222 'phpOMS\tests\Security\PhpCodeTest:testDisabledFunctions' => ['description' => 'A file with no disabled functions gets correctly identified', 'type' => 'framework'],1223 'phpOMS\tests\Security\PhpCodeTest:testHasDeprecatedFunction' => ['description' => 'A file with deprecated functions gets correctly identified', 'type' => 'framework'],1224 'phpOMS\tests\Security\PhpCodeTest:testHasNoDeprecatedFunction' => ['description' => 'A file with no deprecated functions gets correctly identified', 'type' => 'framework'],1225 'phpOMS\tests\Security\PhpCodeTest:testFileIntegrity' => ['description' => 'A file hash comparison is successful if the file generates the same hash', 'type' => 'framework'],1226 'phpOMS\tests\Security\PhpCodeTest:testFileInvalidIntegrity' => ['description' => 'A file hash comparison is unsuccessful if the file generates a different hash', 'type' => 'framework'],1227 'phpOMS\tests\Security\PhpCodeTest:testStringIntegrity' => ['description' => 'Two equal strings validate as the same', 'type' => 'framework'],1228 'phpOMS\tests\Security\PhpCodeTest:testStringInvalidIntegrity' => ['description' => 'Two different strings don\'t validate as the same', 'type' => 'framework'],1229 // socket1230 'phpOMS\tests\Stdlib\Base\AddressTest' => ['description' => 'Address type'],1231 'phpOMS\tests\Stdlib\Base\AddressTest:testAttributes' => ['description' => 'The address has the expected attributes', 'type' => 'framework'],1232 'phpOMS\tests\Stdlib\Base\AddressTest:testDefault' => ['description' => 'The address has the expected default values after initialization', 'type' => 'framework'],1233 'phpOMS\tests\Stdlib\Base\AddressTest:testFAOInputOutput' => ['description' => 'The fao can be set and returned', 'type' => 'framework'],1234 'phpOMS\tests\Stdlib\Base\AddressTest:testRecipientInputOutput' => ['description' => 'The recipient can be set and returned', 'type' => 'framework'],1235 'phpOMS\tests\Stdlib\Base\AddressTest:testLocationInputOutput' => ['description' => 'The location can be set and returned', 'type' => 'framework'],1236 'phpOMS\tests\Stdlib\Base\AddressTest:testArray' => ['description' => 'The address can be turned into array data', 'type' => 'framework'],1237 'phpOMS\tests\Stdlib\Base\AddressTest:testJsonSerialize' => ['description' => 'The address can be json serialized', 'type' => 'framework'],1238 'phpOMS\tests\Stdlib\Base\EnumArrayTest' => ['description' => 'Enum array type'],1239 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testValueOutput' => ['description' => 'A valid enum name returns the enum value', 'type' => 'framework'],1240 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testValidateEnumName' => ['description' => 'A valid enum name can be validated', 'type' => 'framework'],1241 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testInvalidEnumNameValidation' => ['description' => 'A invalid enum name doesn\'t validate', 'type' => 'framework'],1242 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testOutputValues' => ['description' => 'All enum name/value pairs can be returned', 'type' => 'framework'],1243 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testValidateEnumValue' => ['description' => 'A valid enum value can be checked for existence', 'type' => 'framework'],1244 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testInvalidEnumValueValidation' => ['description' => 'A invalid enum value doesn\'t validate', 'type' => 'framework'],1245 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testRandomValue' => ['description' => 'The amount of enum values can be returned', 'type' => 'framework'],1246 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testCount' => ['description' => 'A random enum value can be returned', 'type' => 'framework'],1247 'phpOMS\tests\Stdlib\Base\EnumArrayTest:testInvalidConstantException' => ['description' => 'A invalid enum name throws a OutOfBoundsException', 'type' => 'framework'],1248 'phpOMS\tests\Stdlib\Base\EnumTest' => ['description' => 'Enum type'],1249 'phpOMS\tests\Stdlib\Base\EnumTest:testValueOutput' => ['description' => 'A valid enum name returns the enum value', 'type' => 'framework'],1250 'phpOMS\tests\Stdlib\Base\EnumTest:testNameOutput' => ['description' => 'A valid enum value returns the enum name', 'type' => 'framework'],1251 'phpOMS\tests\Stdlib\Base\EnumTest:testValidateEnumName' => ['description' => 'A valid enum name can be validated', 'type' => 'framework'],1252 'phpOMS\tests\Stdlib\Base\EnumTest:testInvalidEnumNameValidation' => ['description' => 'A invalid enum name doesn\'t validate', 'type' => 'framework'],1253 'phpOMS\tests\Stdlib\Base\EnumTest:testOutputValues' => ['description' => 'All enum name/value pairs can be returned', 'type' => 'framework'],1254 'phpOMS\tests\Stdlib\Base\EnumTest:testValidateEnumValue' => ['description' => 'A valid enum value can be checked for existence', 'type' => 'framework'],1255 'phpOMS\tests\Stdlib\Base\EnumTest:testInvalidEnumValueValidation' => ['description' => 'A invalid enum value doesn\'t validate', 'type' => 'framework'],1256 'phpOMS\tests\Stdlib\Base\EnumTest:testRandomValue' => ['description' => 'The amount of enum values can be returned', 'type' => 'framework'],1257 'phpOMS\tests\Stdlib\Base\EnumTest:testCount' => ['description' => 'A random enum value can be returned', 'type' => 'framework'],1258 'phpOMS\tests\Stdlib\Base\EnumTest:testFlags' => ['description' => 'Binary flags validate if they are set', 'type' => 'framework'],1259 'phpOMS\tests\Stdlib\Base\EnumTest:testInvalidFlags' => ['description' => 'Binary flags don\'t validate if they are not set', 'type' => 'framework'],1260 'phpOMS\tests\Stdlib\Base\EnumTest:testInvalidConstantException' => ['description' => 'A invalid enum name throws a OutOfBoundsException', 'type' => 'framework'],1261 'phpOMS\tests\Stdlib\Base\HeapTest' => ['description' => 'Heap'],1262 'phpOMS\tests\Stdlib\Base\HeapTest:testHeapify' => ['description' => 'A list of elements can be turned into a heap', 'type' => 'framework'],1263 'phpOMS\tests\Stdlib\Base\HeapTest:testSize' => ['description' => 'Elements get correctly pushed to the heap', 'type' => 'framework'],1264 'phpOMS\tests\Stdlib\Base\HeapTest:testInsort' => ['description' => 'A element can be added to a heap at the correct position', 'type' => 'framework'],1265 'phpOMS\tests\Stdlib\Base\HeapTest:testPushAndPop' => ['description' => 'Heap elements get returned in the correct order', 'type' => 'framework'],1266 'phpOMS\tests\Stdlib\Base\HeapTest:testPushAndPopCustomComparator' => ['description' => 'Heap elements get returned in the correct order by using a custom comparator', 'type' => 'framework'],1267 'phpOMS\tests\Stdlib\Base\HeapTest:testArray' => ['description' => 'The heap can be turned into an array', 'type' => 'framework'],1268 'phpOMS\tests\Stdlib\Base\HeapTest:testReplace' => ['description' => 'Heap elements can be replaced', 'type' => 'framework'],1269 'phpOMS\tests\Stdlib\Base\HeapTest:testPushPop' => ['description' => 'A heap element can be returned while adding a new one', 'type' => 'framework'],1270 'phpOMS\tests\Stdlib\Base\HeapTest:testContains' => ['description' => 'The heap can be checked if it contains certain elements', 'type' => 'framework'],1271 'phpOMS\tests\Stdlib\Base\HeapTest:testContainsItem' => ['description' => 'The heap can be checked if it contains certain custom elements', 'type' => 'framework'],1272 'phpOMS\tests\Stdlib\Base\HeapTest:testUpdate' => ['description' => 'A heap item can be updated if it exists while maintaining the correct order', 'type' => 'framework'],1273 'phpOMS\tests\Stdlib\Base\HeapTest:testPeek' => ['description' => 'The first heap element can be returned without removing it', 'type' => 'framework'],1274 'phpOMS\tests\Stdlib\Base\HeapTest:testNSmallest' => ['description' => 'The n smallest elements can be returned from the heap', 'type' => 'framework'],1275 'phpOMS\tests\Stdlib\Base\HeapTest:testNLargest' => ['description' => 'The n largest elements can be returned from the heap', 'type' => 'framework'],1276 'phpOMS\tests\Stdlib\Base\HeapTest:testClear' => ['description' => 'The heap can be cleared of all elements', 'type' => 'framework'],1277 'phpOMS\tests\Stdlib\Base\HeapTest:testEmpty' => ['description' => 'The heap can be checked if it has elements', 'type' => 'framework'],1278 'phpOMS\tests\Stdlib\Base\IbanTest' => ['description' => 'Iban type'],1279 'phpOMS\tests\Stdlib\Base\IbanTest:testInputOutput' => ['description' => 'A iban can be correctly parsed into its different components', 'type' => 'framework'],1280 'phpOMS\tests\Stdlib\Base\IbanTest:testSearialization' => ['description' => 'A iban can be serialized and unserialized', 'type' => 'framework'],1281 'phpOMS\tests\Stdlib\Base\IbanTest:testInvalidIbanCountry' => ['description' => 'A invalid iban country code throws a InvalidArgumentException', 'type' => 'framework'],1282 'phpOMS\tests\Stdlib\Base\IbanTest:testInvalidIbanLength' => ['description' => 'A invalid iban length throws a InvalidArgumentException', 'type' => 'framework'],1283 'phpOMS\tests\Stdlib\Base\IbanTest:testInvalidIbanChecksum' => ['description' => 'A invalid iban checksum throws a InvalidArgumentException', 'type' => 'framework'],1284 'phpOMS\tests\Stdlib\Base\LocationTest' => ['description' => 'Location type'],1285 'phpOMS\tests\Stdlib\Base\LocationTest:testAttributes' => ['description' => 'The location has the expected attributes', 'type' => 'framework'],1286 'phpOMS\tests\Stdlib\Base\LocationTest:testDefault' => ['description' => 'The location has the expected default values after initialization', 'type' => 'framework'],1287 'phpOMS\tests\Stdlib\Base\LocationTest:testPostalInputOutput' => ['description' => 'The postal can be set and returned', 'type' => 'framework'],1288 'phpOMS\tests\Stdlib\Base\LocationTest:testTypeInputOutput' => ['description' => 'The type can be set and returned', 'type' => 'framework'],1289 'phpOMS\tests\Stdlib\Base\LocationTest:testCityInputOutput' => ['description' => 'The city can be set and returned', 'type' => 'framework'],1290 'phpOMS\tests\Stdlib\Base\LocationTest:testCountryInputOutput' => ['description' => 'The country can be set and returned', 'type' => 'framework'],1291 'phpOMS\tests\Stdlib\Base\LocationTest:testAddressInputOutput' => ['description' => 'The address can be set and returned', 'type' => 'framework'],1292 'phpOMS\tests\Stdlib\Base\LocationTest:testStateInputOutput' => ['description' => 'The state can be set and returned', 'type' => 'framework'],1293 'phpOMS\tests\Stdlib\Base\LocationTest:testGeoInputOutput' => ['description' => 'The geo location can be set and returned', 'type' => 'framework'],1294 'phpOMS\tests\Stdlib\Base\LocationTest:testArray' => ['description' => 'The location can be turned into an array', 'type' => 'framework'],1295 'phpOMS\tests\Stdlib\Base\LocationTest:testJsonSerialize' => ['description' => 'The location can be json serialized', 'type' => 'framework'],1296 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest' => ['description' => 'DateTime type with additional functionality'],1297 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testAttributes' => ['description' => 'The smart datetime extends the datetime', 'type' => 'framework'],1298 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testFormat' => ['description' => 'The smart datetime can be formatted like the datetime', 'type' => 'framework'],1299 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testCreateModify' => ['description' => 'The smart datetime can be modified an creates a new smart datetime', 'type' => 'framework'],1300 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testDaysOfMonth' => ['description' => 'The days of the month can be returned', 'type' => 'framework'],1301 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testFirstDayOfMonth' => ['description' => 'The week day index of the first day of the month can be returned', 'type' => 'framework'],1302 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testCreateFromDateTime' => ['description' => 'A smart datetime can be created from a datetime', 'type' => 'framework'],1303 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testEndOfMonth' => ['description' => 'A smart datetime can be returned of the last day of the month', 'type' => 'framework'],1304 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testStartOfMonth' => ['description' => 'A smart datetime can be returned of the fist day of the month', 'type' => 'framework'],1305 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testEndOfWeek' => ['description' => 'A smart datetime can be returned of the fist day of the week', 'type' => 'framework'],1306 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testStartOfWeek' => ['description' => 'A smart datetime can be returned of the last day of the week', 'type' => 'framework'],1307 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testEndOfDay' => ['description' => 'A smart datetime can be returned of the end of the day', 'type' => 'framework'],1308 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testStartOfDay' => ['description' => 'A smart datetime can be returned of the start of the day', 'type' => 'framework'],1309 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testLeapYear' => ['description' => 'A date or year can be checked if it is a leap year', 'type' => 'framework'],1310 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testDayOfWeek' => ['description' => 'The day of the week index can be returned from a date', 'type' => 'framework'],1311 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testInvalidDayOfWeek' => ['description' => 'A invalid day of the week returns a negative week index', 'type' => 'framework'],1312 'phpOMS\tests\Stdlib\Base\SmartDateTimeTest:testCalendarSheet' => ['description' => 'A calendar sheet is returned containing all days of the month and some days of the previous and next month', 'type' => 'framework'],1313 'phpOMS\tests\Stdlib\Graph\GraphTest' => ['description' => 'Graph implementation'],1314 'phpOMS\tests\Stdlib\Graph\GraphTest:testDefault' => ['description' => 'The graph has the expected default values after initialization', 'type' => 'framework'],1315 'phpOMS\tests\Stdlib\Graph\GraphTest:testDirectedInputOutput' => ['description' => 'A graph can ge set as directed', 'type' => 'framework'],1316 'phpOMS\tests\Stdlib\Graph\GraphTest:testNodeInputOutput' => ['description' => 'A node can be add to a graph and returned', 'type' => 'framework'],1317 'phpOMS\tests\Stdlib\Graph\GraphTest:testNodeExists' => ['description' => 'The existence of a node in a graph can be checked', 'type' => 'framework'],1318 'phpOMS\tests\Stdlib\Graph\GraphTest:testGraphWithBridge' => ['description' => 'A graph can be checked for bridges', 'type' => 'framework'],1319 'phpOMS\tests\Stdlib\Graph\GraphTest:testGraphWithBridges' => ['description' => 'Multiple bridges are correctly identified in a graph', 'type' => 'framework'],1320 'phpOMS\tests\Stdlib\Graph\GraphTest:testGraphWithoutBridges' => ['description' => 'A graph without bridges is correctly classified', 'type' => 'framework'],1321 'phpOMS\tests\Stdlib\Graph\GraphTest:testEdgesInputOutput' => ['description' => 'Edges can be add and returned from a graph', 'type' => 'framework'],1322 'phpOMS\tests\Stdlib\Graph\GraphTest:testEdgeInputOutput' => ['description' => 'An edge can be found by two edge ids', 'type' => 'framework'],1323 'phpOMS\tests\Stdlib\Graph\GraphTest:testUndirectedCycle' => ['description' => 'The existence of cycles in undirected graphs can be checked', 'type' => 'framework'],1324 'phpOMS\tests\Stdlib\Graph\GraphTest:testDirectedCycle' => ['description' => 'The existence of cycles in directed graphs can be checked', 'type' => 'framework'],1325 'phpOMS\tests\Stdlib\Graph\GraphTest:testCost' => ['description' => 'The cost of a graph can be calculated', 'type' => 'framework'],1326 'phpOMS\tests\Stdlib\Graph\GraphTest:testKruskalMinimalSpanningTree' => ['description' => 'The Kruskal minimal spanning tree can be created', 'type' => 'framework'],1327 'phpOMS\tests\Stdlib\Graph\NodeTest' => ['description' => 'Node in a graph'],1328 'phpOMS\tests\Stdlib\Graph\NodeTest:testDefault' => ['description' => 'The node has the expected default values after initialization', 'type' => 'framework'],1329 'phpOMS\tests\Stdlib\Graph\NodeTest:testDataInputOutput' => ['description' => 'The node data can be set and returned', 'type' => 'framework'],1330 'phpOMS\tests\Stdlib\Graph\NodeTest:testNodesEqual' => ['description' => 'Two equal nodes are equal', 'type' => 'framework'],1331 'phpOMS\tests\Stdlib\Graph\NodeTest:testNodesNotEqual' => ['description' => 'Two different nodes are not equal', 'type' => 'framework'],1332 'phpOMS\tests\Stdlib\Graph\NodeTest:testEdgeInputOutput' => ['description' => 'An edge for a node can be defined', 'type' => 'framework'],1333 'phpOMS\tests\Stdlib\Graph\NodeTest:testEdgeKeyInputOutput' => ['description' => 'An edge for a node can be defined by key', 'type' => 'framework'],1334 'phpOMS\tests\Stdlib\Graph\NodeTest:testNodeRelation' => ['description' => 'A node relationship can be defined', 'type' => 'framework'],1335 'phpOMS\tests\Stdlib\Graph\NodeTest:testNeighborsInputOutput' => ['description' => 'All neighbors of a node can be returned', 'type' => 'framework'],1336 'phpOMS\tests\Stdlib\Graph\EdgeTest' => ['description' => 'Edge between nodes'],1337 'phpOMS\tests\Stdlib\Graph\EdgeTest:testDefault' => ['description' => 'The edge has the expected default values after initialization', 'type' => 'framework'],1338 'phpOMS\tests\Stdlib\Graph\EdgeTest:testDirected' => ['description' => 'An edge can be directed', 'type' => 'framework'],1339 'phpOMS\tests\Stdlib\Graph\EdgeTest:testWeightInputOutput' => ['description' => 'An edge weight can be set and returned', 'type' => 'framework'],1340 'phpOMS\tests\Stdlib\Graph\EdgeTest:testWeightComparison' => ['description' => 'Two edge weights can be compared', 'type' => 'framework'],1341 'phpOMS\tests\Stdlib\Map\MultiMapTest' => ['description' => 'Map which associates multiple keys with the same value'],1342 'phpOMS\tests\Stdlib\Map\MultiMapTest:testDefault' => ['description' => 'The map has the expected default values and functionality after initialization', 'type' => 'framework'],1343 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicAddAny' => ['description' => 'Elements with multiple optional keys can be added', 'type' => 'framework'],1344 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicGetAny' => ['description' => 'Elements with multiple optional keys can be returned if any of the keys matches', 'type' => 'framework'],1345 'phpOMS\tests\Stdlib\Map\MultiMapTest:testOverwriteAny' => ['description' => 'Elements can be forcefully overwritten', 'type' => 'framework'],1346 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidOverwriteSubkeyAny' => ['description' => 'By default elements are not overwritten', 'type' => 'framework'],1347 'phpOMS\tests\Stdlib\Map\MultiMapTest:testOverwriteCreateAny' => ['description' => 'If a element with partially matching keys is already in the map it will be only added for the new key', 'type' => 'framework'],1348 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidOverwriteAny' => ['description' => 'If all keys exist in the map no new element will be created', 'type' => 'framework'],1349 'phpOMS\tests\Stdlib\Map\MultiMapTest:testSetByKeyAny' => ['description' => 'Values can be set/replaced by key', 'type' => 'framework'],1350 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidSetByKeyAny' => ['description' => 'Values cannot be set/replaced if the key doesn\'t exist', 'type' => 'framework'],1351 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidRemapNewAny' => ['description' => 'A key cannot be remapped to a none-existing key', 'type' => 'framework'],1352 'phpOMS\tests\Stdlib\Map\MultiMapTest:testRemapAny' => ['description' => 'A key can be remapped to the value of an existing key', 'type' => 'framework'],1353 'phpOMS\tests\Stdlib\Map\MultiMapTest:testRemapUnmapAny' => ['description' => 'If no more keys are associated with a value after a remap the value is removed from the map', 'type' => 'framework'],1354 'phpOMS\tests\Stdlib\Map\MultiMapTest:testMapKeysAny' => ['description' => 'All keys of the map can be returned', 'type' => 'framework'],1355 'phpOMS\tests\Stdlib\Map\MultiMapTest:testMapValuesAny' => ['description' => 'All values of the map can be returned', 'type' => 'framework'],1356 'phpOMS\tests\Stdlib\Map\MultiMapTest:testSiblingsAny' => ['description' => 'Sibling keys can be found', 'type' => 'framework'],1357 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidSiblingsAny' => ['description' => 'If a key doesn\'t exist or has no siblings no siblings are returned', 'type' => 'framework'],1358 'phpOMS\tests\Stdlib\Map\MultiMapTest:testRemoveAny' => ['description' => 'A key for a value can be removed', 'type' => 'framework'],1359 'phpOMS\tests\Stdlib\Map\MultiMapTest:testRemoveLastAny' => ['description' => 'If the last key of a value is removed the value is also removed from the map', 'type' => 'framework'],1360 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidRemoveAny' => ['description' => 'If a key doesn\'t exist it cannot be removed', 'type' => 'framework'],1361 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicAddExact' => ['description' => 'Elements with multiple required keys can be added', 'type' => 'framework'],1362 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicGetExact' => ['description' => 'Elements with multiple required keys can be returned if all match', 'type' => 'framework'],1363 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicInvalidGetExact' => ['description' => 'Elements with multiple required keys cannot be returned if they don\'t match exactly', 'type' => 'framework'],1364 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicAddExactOrdered' => ['description' => 'Elements with multiple required and ordered keys can be added', 'type' => 'framework'],1365 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicGetExactOrdered' => ['description' => 'Elements with multiple required ordered keys can be if all match in the correct order', 'type' => 'framework'],1366 'phpOMS\tests\Stdlib\Map\MultiMapTest:testBasicInvalidOrderedGetExact' => ['description' => 'Elements with multiple required keys cannot be returned if they don\'t match exactly in the correct order', 'type' => 'framework'],1367 'phpOMS\tests\Stdlib\Map\MultiMapTest:testOverwriteExact' => ['description' => 'Elements with multiple required keys can be forcefully overwritten', 'type' => 'framework'],1368 'phpOMS\tests\Stdlib\Map\MultiMapTest:testOverwriteExactOrdered' => ['description' => 'Elements with multiple required ordered keys can be forcefully overwritten', 'type' => 'framework'],1369 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidAddDifferentOrderExact' => ['description' => 'An element cannot be added to for multiple required keys if the keys already exist in a different order', 'type' => 'framework'],1370 'phpOMS\tests\Stdlib\Map\MultiMapTest:testOverwriteCreateExact' => ['description' => 'If a element with partially matching multiple keys is already in the map it will be only added for the new key', 'type' => 'framework'],1371 'phpOMS\tests\Stdlib\Map\MultiMapTest:testAddDifferentlyOrderedKeys' => ['description' => 'Adding differently ordered keys for multiple required keys will create a new entry in the map', 'type' => 'framework'],1372 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidOverwriteExact' => ['description' => 'If all keys for multiple required keys exist in the map no new element will be created', 'type' => 'framework'],1373 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidOverwriteExactOrdered' => ['description' => 'If all keys for multiple required ordered keys exist in the map no new element will be created', 'type' => 'framework'],1374 'phpOMS\tests\Stdlib\Map\MultiMapTest:testSetByKeyExact' => ['description' => 'Values can be set/replaced by multiple required keys', 'type' => 'framework'],1375 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidSetByKeyExact' => ['description' => 'Values cannot be set/replaced if the multiple required keys don\'t match or exist', 'type' => 'framework'],1376 'phpOMS\tests\Stdlib\Map\MultiMapTest:testSetByKeyExactOrdered' => ['description' => 'Values can be set/replaced by multiple required ordered keys if the order is correct', 'type' => 'framework'],1377 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidSetByKeyExactOrdered' => ['description' => 'Values cannot be set/replaced if the multiple required ordered keys don\'t match or exist in the correct order', 'type' => 'framework'],1378 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidRemapExact' => ['description' => 'Multiple keys cannot be remapped', 'type' => 'framework'],1379 'phpOMS\tests\Stdlib\Map\MultiMapTest:testSiblingsExact' => ['description' => 'All sibling key combinations can be found for multiple required keys', 'type' => 'framework'],1380 'phpOMS\tests\Stdlib\Map\MultiMapTest:testSiblingsExactOrdered' => ['description' => 'For multiple required ordered keys don\'t exist any siblings', 'type' => 'framework'],1381 'phpOMS\tests\Stdlib\Map\MultiMapTest:testRemoveExact' => ['description' => 'A multiple required key combination for a value can be removed', 'type' => 'framework'],1382 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidRemoveExact' => ['description' => 'If a multiple required key combination doesn\'t exist it cannot be removed', 'type' => 'framework'],1383 'phpOMS\tests\Stdlib\Map\MultiMapTest:testRemoveExactOrdered' => ['description' => 'A multiple required ordered key combination for a value can be removed', 'type' => 'framework'],1384 'phpOMS\tests\Stdlib\Map\MultiMapTest:testInvalidRemoveExactOrdered' => ['description' => 'If a multiple required ordered key combination doesn\'t exist it cannot be removed', 'type' => 'framework'],1385 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest' => ['description' => 'Priority queue'],1386 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testDefault' => ['description' => 'The queue has the expected default values and functionality after initialization', 'type' => 'framework'],1387 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testInputOutput' => ['description' => 'Queue elements can be added with the default value of 1.0 and returned', 'type' => 'framework'],1388 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testAddWithPriority' => ['description' => 'Queue elements can be added with a priority', 'type' => 'framework'],1389 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testCount' => ['description' => 'The priority queue returns the correct amount of elements it holds', 'type' => 'framework'],1390 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testRemove' => ['description' => 'A queue element can be removed', 'type' => 'framework'],1391 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testInvalidRemove' => ['description' => 'A none-existing queue element id cannot be removed', 'type' => 'framework'],1392 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testInvalidGet' => ['description' => 'A removed or none-existing queue element returns a empty data', 'type' => 'framework'],1393 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testPriorityIncreaseAll' => ['description' => 'The priority of all queue elements can be uniformly increased', 'type' => 'framework'],1394 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testPriorityChange' => ['description' => 'The priority or a queue element can be changed', 'type' => 'framework'],1395 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testSerialize' => ['description' => 'The queue can be serialized and unserialized', 'type' => 'framework'],1396 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testPop' => ['description' => 'A queue element can be popped from the que which also removes it from the queue', 'type' => 'framework'],1397 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testFIFO' => ['description' => 'A FIFO queue returns the elements in FIFO order', 'type' => 'framework'],1398 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testLIFO' => ['description' => 'A LIFO queue returns the elements in LIFO order', 'type' => 'framework'],1399 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testHighest' => ['description' => 'A highest queue returns the elements in highest priority order', 'type' => 'framework'],1400 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testLowest' => ['description' => 'A lowest queue returns the elements in lowest priority order', 'type' => 'framework'],1401 'phpOMS\tests\Stdlib\Queue\PriorityQueueTest:testInvalidPriority' => ['description' => 'A invalid priority queue type throws a InvalidEnumValue', 'type' => 'framework'],1402 'phpOMS\tests\System\File\Local\DirectoryTest' => ['description' => 'Directory handler for local file system', 'type' => 'framework'],1403 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticCreate' => ['description' => 'A directory can be created', 'type' => 'framework'],1404 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticExists' => ['description' => 'A directory can be checked for existence', 'type' => 'framework'],1405 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidStaticOverwrite' => ['description' => 'An existing directory cannot be overwritten', 'type' => 'framework'],1406 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticSubdir' => ['description' => 'A directory can be forced to be created recursively', 'type' => 'framework'],1407 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidStaticSubdir' => ['description' => 'By default a directory is not created recursively', 'type' => 'framework'],1408 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticName' => ['description' => 'The name of a directory is just its name without its path', 'type' => 'framework'],1409 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticBasename' => ['description' => 'The basename is the same as the name of the directory', 'type' => 'framework'],1410 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticDirname' => ['description' => 'The dirname is the same as the name of the directory', 'type' => 'framework'],1411 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticParent' => ['description' => 'The parent of a directory can be returned', 'type' => 'framework'],1412 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticDirectoryPath' => ['description' => 'The full absolute path of a directory can be returned', 'type' => 'framework'],1413 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticCreatedAt' => ['description' => 'The directories creation date can be returned', 'type' => 'framework'],1414 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticChangedAt' => ['description' => 'The directories last change date can be returned', 'type' => 'framework'],1415 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticDelete' => ['description' => 'A directory can be deleted', 'type' => 'framework'],1416 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidStaticDelete' => ['description' => 'A none-existing directory cannot be deleted', 'type' => 'framework'],1417 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticSizeRecursive' => ['description' => 'The size of a directory can be returned', 'type' => 'framework'],1418 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidStaticSizeRecursive' => ['description' => 'The size of a none-existing directory is negative', 'type' => 'framework'],1419 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticSize' => ['description' => 'The recursive size of a directory is equals or greater than the size of the same directory none-recursive', 'type' => 'framework'],1420 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticPermission' => ['description' => 'The permission of a directory can be returned', 'type' => 'framework'],1421 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidStaticPermission' => ['description' => 'The permission of a none-existing directory is negative', 'type' => 'framework'],1422 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticCopy' => ['description' => 'A directory can be copied recursively', 'type' => 'framework'],1423 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticCopyOverwrite' => ['description' => 'A directory can be forced to be copied to a different location even if the destination already exists', 'type' => 'framework'],1424 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticInvalidCopyOverwrite' => ['description' => 'By default a directory is not overwritten on copy', 'type' => 'framework'],1425 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticMove' => ['description' => 'A directory can be moved/renamed to a different path', 'type' => 'framework'],1426 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticInvalidMoveOverwrite' => ['description' => 'By default a directory is not overwritten on move', 'type' => 'framework'],1427 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticMoveOverwrite' => ['description' => 'A directory can be forced to be moved/renamed to a different path even if the destination already exists', 'type' => 'framework'],1428 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticCountRecursive' => ['description' => 'The amount of files in a directory can be returned recursively', 'type' => 'framework'],1429 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticCount' => ['description' => 'The amount of files in a directory can be returned none-recursively', 'type' => 'framework'],1430 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidStaticCount' => ['description' => 'The amount of files of a none-existing directory is negative', 'type' => 'framework'],1431 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticListFiles' => ['description' => 'All files and sub-directories of a directory can be listed', 'type' => 'framework'],1432 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticListFilesByExtension' => ['description' => 'All files of a directory can be listed by file extension', 'type' => 'framework'],1433 'phpOMS\tests\System\File\Local\DirectoryTest:testStaticOwner' => ['description' => 'The owner of a directory can be returned', 'type' => 'framework'],1434 'phpOMS\tests\System\File\Local\DirectoryTest:testDirectoryNameSanitizing' => ['description' => 'Invalid directory names and paths can be sanitized', 'type' => 'framework'],1435 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidListPath' => ['description' => 'A none-existing directory returns a empty list of files and sub-directories', 'type' => 'framework'],1436 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidListFilesByExtension' => ['description' => 'A none-existing directory returns a empty list of files for the extension', 'type' => 'framework'],1437 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidCopyPath' => ['description' => 'A invalid directory cannot be copied to a new destination', 'type' => 'framework'],1438 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidMovePath' => ['description' => 'A invalid directory cannot be moved to a new destination', 'type' => 'framework'],1439 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidCreatedPath' => ['description' => 'Reading the creation date of a none-existing directory throws a PathException', 'type' => 'framework'],1440 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidChangedPath' => ['description' => 'Reading the last change date of a none-existing directory throws a PathException', 'type' => 'framework'],1441 'phpOMS\tests\System\File\Local\DirectoryTest:testInvalidOwnerPath' => ['description' => 'Reading the owner of a none-existing directory throws a PathException', 'type' => 'framework'],1442 'phpOMS\tests\System\File\Local\FileTest' => ['description' => 'File handler for local file system', 'type' => 'framework'],1443 'phpOMS\tests\System\File\Local\FileTest:testStaticCreate' => ['description' => 'A file without content can be created', 'type' => 'framework'],1444 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticCreate' => ['description' => 'A file cannot be created if it already exists', 'type' => 'framework'],1445 'phpOMS\tests\System\File\Local\FileTest:testStaticPut' => ['description' => 'A file with content can be created', 'type' => 'framework'],1446 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticCreateReplace' => ['description' => 'A file cannot be replaced if it doesn\'t exists', 'type' => 'framework'],1447 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticCreateAppend' => ['description' => 'A file cannot be appended if it doesn\'t exists', 'type' => 'framework'],1448 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticCreatePrepend' => ['description' => 'A file cannot be prepended if it doesn\'t exists', 'type' => 'framework'],1449 'phpOMS\tests\System\File\Local\FileTest:testStaticExists' => ['description' => 'A file can be checked for existence', 'type' => 'framework'],1450 'phpOMS\tests\System\File\Local\FileTest:testStaticReplace' => ['description' => 'A file can be replaced with a new one', 'type' => 'framework'],1451 'phpOMS\tests\System\File\Local\FileTest:testStaticSetAlias' => ['description' => 'The set alias works like the replace flag', 'type' => 'framework'],1452 'phpOMS\tests\System\File\Local\FileTest:testStaticAppend' => ['description' => 'A file can be appended with additional content', 'type' => 'framework'],1453 'phpOMS\tests\System\File\Local\FileTest:testStaticAppendAlias' => ['description' => 'The append alias works like the append flag', 'type' => 'framework'],1454 'phpOMS\tests\System\File\Local\FileTest:testStaticPrepend' => ['description' => 'A file can be prepended with additional content', 'type' => 'framework'],1455 'phpOMS\tests\System\File\Local\FileTest:testStaticPrependAlias' => ['description' => 'The prepend alias works like the prepend flag', 'type' => 'framework'],1456 'phpOMS\tests\System\File\Local\FileTest:testStaticGet' => ['description' => 'The content of a file can be read', 'type' => 'framework'],1457 'phpOMS\tests\System\File\Local\FileTest:testStaticParent' => ['description' => 'The parent directory of a file can be returned', 'type' => 'framework'],1458 'phpOMS\tests\System\File\Local\FileTest:testStaticExtension' => ['description' => 'The extension of a file can be returned', 'type' => 'framework'],1459 'phpOMS\tests\System\File\Local\FileTest:testStaticName' => ['description' => 'The name of a file can be returned', 'type' => 'framework'],1460 'phpOMS\tests\System\File\Local\FileTest:testStaticBaseName' => ['description' => 'The basename of a file can be returned', 'type' => 'framework'],1461 'phpOMS\tests\System\File\Local\FileTest:testStaticDirname' => ['description' => 'The file name of a file can be returned', 'type' => 'framework'],1462 'phpOMS\tests\System\File\Local\FileTest:testStaticDirectoryPath' => ['description' => 'The file path of a file can be returned', 'type' => 'framework'],1463 'phpOMS\tests\System\File\Local\FileTest:testStaticCount' => ['description' => 'The count of a file is always 1', 'type' => 'framework'],1464 'phpOMS\tests\System\File\Local\FileTest:testStaticCreatedAt' => ['description' => 'The directories creation date can be returned', 'type' => 'framework'],1465 'phpOMS\tests\System\File\Local\FileTest:testStaticChangedAt' => ['description' => 'The directories last change date can be returned', 'type' => 'framework'],1466 'phpOMS\tests\System\File\Local\FileTest:testStaticDelete' => ['description' => 'A file can be deleted', 'type' => 'framework'],1467 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticDelete' => ['description' => 'A none-existing file cannot be deleted', 'type' => 'framework'],1468 'phpOMS\tests\System\File\Local\FileTest:testStaticSize' => ['description' => 'The size of a file can be returned', 'type' => 'framework'],1469 'phpOMS\tests\System\File\Local\FileTest:testStaticPermission' => ['description' => 'The permission of a file can be returned', 'type' => 'framework'],1470 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticPermission' => ['description' => 'The permission of a none-existing file is negative', 'type' => 'framework'],1471 'phpOMS\tests\System\File\Local\FileTest:testStaticCopy' => ['description' => 'A file can be copied to a different location', 'type' => 'framework'],1472 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticCopy' => ['description' => 'A file cannot be copied to a different location if the destination already exists', 'type' => 'framework'],1473 'phpOMS\tests\System\File\Local\FileTest:testStaticCopyOverwrite' => ['description' => 'A file can be forced to be copied to a different location even if the destination already exists', 'type' => 'framework'],1474 'phpOMS\tests\System\File\Local\FileTest:testStaticMove' => ['description' => 'A file can be moved to a different location', 'type' => 'framework'],1475 'phpOMS\tests\System\File\Local\FileTest:testInvalidStaticMove' => ['description' => 'A file cannot be moved to a different location if the destination already exists', 'type' => 'framework'],1476 'phpOMS\tests\System\File\Local\FileTest:testStaticMoveOverwrite' => ['description' => 'A file can be forced to be moved to a different location even if the destination already exists', 'type' => 'framework'],1477 'phpOMS\tests\System\File\Local\FileTest:testInvalidSizePath' => ['description' => 'The size of a none-existing file is negative', 'type' => 'framework'],1478 'phpOMS\tests\System\File\Local\FileTest:testInvalidCopyPath' => ['description' => 'A none-existing file cannot be copied', 'type' => 'framework'],1479 'phpOMS\tests\System\File\Local\FileTest:testInvalidMovePath' => ['description' => 'A none-existing file cannot be moved', 'type' => 'framework'],1480 'phpOMS\tests\System\File\Local\FileTest:testInvalidGetPath' => ['description' => 'Reading the content of a none-existing file throws a PathException', 'type' => 'framework'],1481 'phpOMS\tests\System\File\Local\FileTest:testInvalidCreatedPath' => ['description' => 'Reading the created date of a none-existing file throws a PathException', 'type' => 'framework'],1482 'phpOMS\tests\System\File\Local\FileTest:testInvalidChangedPath' => ['description' => 'Reading the last change date of a none-existing file throws a PathException', 'type' => 'framework'],1483 'phpOMS\tests\System\File\Local\FileTest:testInvalidOwnerPath' => ['description' => 'Reading the owner of a none-existing file throws a PathException', 'type' => 'framework'],1484 'phpOMS\tests\System\File\Local\LocalStorageTest' => ['description' => 'Directory & File handler for local file system', 'type' => 'framework'],1485 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCreateDirectory' => ['description' => 'A directory can be created', 'type' => 'framework'],1486 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticExistsDirectory' => ['description' => 'A directory can be checked for existence', 'type' => 'framework'],1487 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticOverwriteDirectory' => ['description' => 'An existing directory cannot be overwritten', 'type' => 'framework'],1488 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticSubdirDirectory' => ['description' => 'A directory can be forced to be created recursively', 'type' => 'framework'],1489 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticNameDirectory' => ['description' => 'The name of a directory is just its name without its path', 'type' => 'framework'],1490 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticBasenameDirectory' => ['description' => 'The basename is the same as the name of the directory', 'type' => 'framework'],1491 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticDirnameDirectory' => ['description' => 'The dirname is the same as the name of the directory', 'type' => 'framework'],1492 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticParentDirectory' => ['description' => 'The parent of a directory can be returned', 'type' => 'framework'],1493 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticDirectoryPathDirectory' => ['description' => 'The full absolute path of a directory can be returned', 'type' => 'framework'],1494 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCreatedAtDirectory' => ['description' => 'The directories creation date can be returned', 'type' => 'framework'],1495 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticChangedAtDirectory' => ['description' => 'The directories last change date can be returned', 'type' => 'framework'],1496 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticDeleteDirectory' => ['description' => 'A directory can be deleted', 'type' => 'framework'],1497 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticDeleteDirectory' => ['description' => 'A none-existing directory cannot be deleted', 'type' => 'framework'],1498 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticSizeRecursiveDirectory' => ['description' => 'The size of a directory can be returned', 'type' => 'framework'],1499 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticSizeRecursiveDirectory' => ['description' => 'The size of a none-existing directory is negative', 'type' => 'framework'],1500 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticSizeDirectory' => ['description' => 'The recursive size of a directory is equals or greater than the size of the same directory none-recursive', 'type' => 'framework'],1501 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticPermissionDirectory' => ['description' => 'The permission of a directory can be returned', 'type' => 'framework'],1502 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticPermissionDirectory' => ['description' => 'The permission of a none-existing directory is negative', 'type' => 'framework'],1503 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCopyDirectory' => ['description' => 'A directory can be copied recursively', 'type' => 'framework'],1504 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticMoveDirectory' => ['description' => 'A directory can be moved/renamed to a different path', 'type' => 'framework'],1505 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCountRecursiveDirectory' => ['description' => 'The amount of files in a directory can be returned recursively', 'type' => 'framework'],1506 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCountDirectory' => ['description' => 'The amount of files in a directory can be returned none-recursively', 'type' => 'framework'],1507 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticCountDirectory' => ['description' => 'The amount of files of a none-existing directory is negative', 'type' => 'framework'],1508 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticListFilesDirectory' => ['description' => 'All files and sub-directories of a directory can be listed', 'type' => 'framework'],1509 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidListPathDirectory' => ['description' => 'A none-existing directory returns a empty list of files and sub-directories', 'type' => 'framework'],1510 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidCopyPathDirectory' => ['description' => 'A invalid directory cannot be copied to a new destination', 'type' => 'framework'],1511 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidMovePathDirectory' => ['description' => 'A invalid directory cannot be moved to a new destination', 'type' => 'framework'],1512 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidCreatedPathDirectory' => ['description' => 'Reading the creation date of a none-existing directory throws a PathException', 'type' => 'framework'],1513 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidChangedPathDirectory' => ['description' => 'Reading the last change date of a none-existing directory throws a PathException', 'type' => 'framework'],1514 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidOwnerPathDirectory' => ['description' => 'Reading the owner of a none-existing directory throws a PathException', 'type' => 'framework'],1515 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticCreateFile' => ['description' => 'A file cannot be created if it already exists', 'type' => 'framework'],1516 'phpOMS\tests\System\File\Local\LocalStorageTest:testSanitization' => ['description' => 'Invalid names and paths can be sanitized', 'type' => 'framework'],1517 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticPutFile' => ['description' => 'A file with content can be created', 'type' => 'framework'],1518 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticCreateReplaceFile' => ['description' => 'A file cannot be replaced if it doesn\'t exists', 'type' => 'framework'],1519 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticCreateAppendFile' => ['description' => 'A file cannot be appended if it doesn\'t exists', 'type' => 'framework'],1520 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticCreatePrependFile' => ['description' => 'A file cannot be prepended if it doesn\'t exists', 'type' => 'framework'],1521 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticExistsFile' => ['description' => 'A file can be checked for existence', 'type' => 'framework'],1522 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticReplaceFile' => ['description' => 'A file can be replaced with a new one', 'type' => 'framework'],1523 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticSetAliasFile' => ['description' => 'The set alias works like the replace flag', 'type' => 'framework'],1524 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticAppendFile' => ['description' => 'A file can be appended with additional content', 'type' => 'framework'],1525 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticAppendAliasFile' => ['description' => 'The append alias works like the append flag', 'type' => 'framework'],1526 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticPrependFile' => ['description' => 'A file can be prepended with additional content', 'type' => 'framework'],1527 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticPrependAliasFile' => ['description' => 'The prepend alias works like the prepend flag', 'type' => 'framework'],1528 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticGetFile' => ['description' => 'The content of a file can be read', 'type' => 'framework'],1529 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticParentFile' => ['description' => 'The parent directory of a file can be returned', 'type' => 'framework'],1530 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticExtensionFile' => ['description' => 'The extension of a file can be returned', 'type' => 'framework'],1531 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticNameFile' => ['description' => 'The name of a file can be returned', 'type' => 'framework'],1532 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticBaseNameFile' => ['description' => 'The basename of a file can be returned', 'type' => 'framework'],1533 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticDirnameFile' => ['description' => 'The file name of a file can be returned', 'type' => 'framework'],1534 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticDirectoryPathFile' => ['description' => 'The file path of a file can be returned', 'type' => 'framework'],1535 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCountFile' => ['description' => 'The count of a file is always 1', 'type' => 'framework'],1536 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCreatedAtFile' => ['description' => 'The directories creation date can be returned', 'type' => 'framework'],1537 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticChangedAtFile' => ['description' => 'The directories last change date can be returned', 'type' => 'framework'],1538 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticDeleteFile' => ['description' => 'A file can be deleted', 'type' => 'framework'],1539 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticDeleteFile' => ['description' => 'A none-existing file cannot be deleted', 'type' => 'framework'],1540 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticSizeFile' => ['description' => 'The size of a file can be returned', 'type' => 'framework'],1541 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticPermissionFile' => ['description' => 'The permission of a file can be returned', 'type' => 'framework'],1542 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticPermissionFile' => ['description' => 'The permission of a none-existing file is negative', 'type' => 'framework'],1543 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCopyFile' => ['description' => 'A file can be copied to a different location', 'type' => 'framework'],1544 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticCopyFile' => ['description' => 'A file cannot be copied to a different location if the destination already exists', 'type' => 'framework'],1545 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticCopyOverwriteFile' => ['description' => 'A file can be forced to be copied to a different location even if the destination already exists', 'type' => 'framework'],1546 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticMoveFile' => ['description' => 'A file can be moved to a different location', 'type' => 'framework'],1547 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidStaticMoveFile' => ['description' => 'A file cannot be moved to a different location if the destination already exists', 'type' => 'framework'],1548 'phpOMS\tests\System\File\Local\LocalStorageTest:testStaticMoveOverwriteFile' => ['description' => 'A file can be forced to be moved to a different location even if the destination already exists', 'type' => 'framework'],1549 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidSizePathFile' => ['description' => 'The size of a none-existing file is negative', 'type' => 'framework'],1550 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidCopyPathFile' => ['description' => 'A none-existing file cannot be copied', 'type' => 'framework'],1551 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidMovePathFile' => ['description' => 'A none-existing file cannot be moved', 'type' => 'framework'],1552 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidGetPathFile' => ['description' => 'Reading the content of a none-existing file throws a PathException', 'type' => 'framework'],1553 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidCreatedPathFile' => ['description' => 'Reading the created date of a none-existing file throws a PathException', 'type' => 'framework'],1554 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidChangedPathFile' => ['description' => 'Reading the last change date of a none-existing file throws a PathException', 'type' => 'framework'],1555 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidOwnerPathFile' => ['description' => 'Reading the owner of a none-existing file throws a PathException', 'type' => 'framework'],1556 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidPutPath' => ['description' => 'Writing data to a destination which looks like a directory throws a PathException', 'type' => 'framework'],1557 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidGetPath' => ['description' => 'Reading data from a directory throws a PathException', 'type' => 'framework'],1558 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidListPath' => ['description' => 'Trying to run list on a file throws a PathException', 'type' => 'framework'],1559 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidSetPath' => ['description' => 'Setting data to a destination which looks like a directory throws a PathException', 'type' => 'framework'],1560 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidAppendPath' => ['description' => 'Appending data to a destination which looks like a directory throws a PathException', 'type' => 'framework'],1561 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidPrependPath' => ['description' => 'Prepending data to a destination which looks like a directory throws a PathException', 'type' => 'framework'],1562 'phpOMS\tests\System\File\Local\LocalStorageTest:testInvalidExtensionPath' => ['description' => 'Reading the extension of a destination which looks like a directory throws a PathException', 'type' => 'framework'],1563 'phpOMS\tests\System\File\Ftp\DirectoryTest' => ['description' => 'Directory handler for a ftp server', 'type' => 'framework'],1564 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticCreate' => ['description' => 'A directory can be created', 'type' => 'framework'],1565 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticExists' => ['description' => 'A directory can be checked for existence', 'type' => 'framework'],1566 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidStaticOverwrite' => ['description' => 'An existing directory cannot be overwritten', 'type' => 'framework'],1567 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticSubdir' => ['description' => 'A directory can be forced to be created recursively', 'type' => 'framework'],1568 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidStaticSubdir' => ['description' => 'By default a directory is not created recursively', 'type' => 'framework'],1569 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticName' => ['description' => 'The name of a directory is just its name without its path', 'type' => 'framework'],1570 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticBasename' => ['description' => 'The basename is the same as the name of the directory', 'type' => 'framework'],1571 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticDirname' => ['description' => 'The dirname is the same as the name of the directory', 'type' => 'framework'],1572 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticParent' => ['description' => 'The parent of a directory can be returned', 'type' => 'framework'],1573 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticDirectoryPath' => ['description' => 'The full absolute path of a directory can be returned', 'type' => 'framework'],1574 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticCreatedAt' => ['description' => 'The directories creation date can be returned', 'type' => 'framework'],1575 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticChangedAt' => ['description' => 'The directories last change date can be returned', 'type' => 'framework'],1576 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticDelete' => ['description' => 'A directory can be deleted', 'type' => 'framework'],1577 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidStaticDelete' => ['description' => 'A none-existing directory cannot be deleted', 'type' => 'framework'],1578 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticSizeRecursive' => ['description' => 'The size of a directory can be returned', 'type' => 'framework'],1579 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidStaticSizeRecursive' => ['description' => 'The size of a none-existing directory is negative', 'type' => 'framework'],1580 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticSize' => ['description' => 'The recursive size of a directory is equals or greater than the size of the same directory none-recursive', 'type' => 'framework'],1581 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticPermission' => ['description' => 'The permission of a directory can be returned', 'type' => 'framework'],1582 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidStaticPermission' => ['description' => 'The permission of a none-existing directory is negative', 'type' => 'framework'],1583 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticCopy' => ['description' => 'A directory can be copied recursively', 'type' => 'framework'],1584 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticMove' => ['description' => 'A directory can be moved/renamed to a different path', 'type' => 'framework'],1585 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticCountRecursive' => ['description' => 'The amount of files in a directory can be returned recursively', 'type' => 'framework'],1586 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticCount' => ['description' => 'The amount of files in a directory can be returned none-recursively', 'type' => 'framework'],1587 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidStaticCount' => ['description' => 'The amount of files of a none-existing directory is negative', 'type' => 'framework'],1588 'phpOMS\tests\System\File\Ftp\DirectoryTest:testStaticListFiles' => ['description' => 'All files and sub-directories of a directory can be listed', 'type' => 'framework'],1589 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidListPath' => ['description' => 'A none-existing directory returns a empty list of files and sub-directories', 'type' => 'framework'],1590 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidCopyPath' => ['description' => 'A invalid directory cannot be copied to a new destination', 'type' => 'framework'],1591 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidMovePath' => ['description' => 'A invalid directory cannot be moved to a new destination', 'type' => 'framework'],1592 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidCreatedPath' => ['description' => 'Reading the creation date of a none-existing directory throws a PathException', 'type' => 'framework'],1593 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidChangedPath' => ['description' => 'Reading the last change date of a none-existing directory throws a PathException', 'type' => 'framework'],1594 'phpOMS\tests\System\File\Ftp\DirectoryTest:testInvalidOwnerPath' => ['description' => 'Reading the owner of a none-existing directory throws a PathException', 'type' => 'framework'],1595 'phpOMS\tests\System\File\Ftp\FileTest' => ['description' => 'File handler for a ftp server', 'type' => 'framework'],1596 'phpOMS\tests\System\File\Ftp\FileTest:testStaticCreate' => ['description' => 'A file without content can be created', 'type' => 'framework'],1597 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticCreate' => ['description' => 'A file cannot be created if it already exists', 'type' => 'framework'],1598 'phpOMS\tests\System\File\Ftp\FileTest:testStaticPut' => ['description' => 'A file with content can be created', 'type' => 'framework'],1599 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticCreateReplace' => ['description' => 'A file cannot be replaced if it doesn\'t exists', 'type' => 'framework'],1600 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticCreateAppend' => ['description' => 'A file cannot be appended if it doesn\'t exists', 'type' => 'framework'],1601 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticCreatePrepend' => ['description' => 'A file cannot be prepended if it doesn\'t exists', 'type' => 'framework'],1602 'phpOMS\tests\System\File\Ftp\FileTest:testStaticExists' => ['description' => 'A file can be checked for existence', 'type' => 'framework'],1603 'phpOMS\tests\System\File\Ftp\FileTest:testStaticReplace' => ['description' => 'A file can be replaced with a new one', 'type' => 'framework'],1604 'phpOMS\tests\System\File\Ftp\FileTest:testStaticSetAlias' => ['description' => 'The set alias works like the replace flag', 'type' => 'framework'],1605 'phpOMS\tests\System\File\Ftp\FileTest:testStaticAppend' => ['description' => 'A file can be appended with additional content', 'type' => 'framework'],1606 'phpOMS\tests\System\File\Ftp\FileTest:testStaticAppendAlias' => ['description' => 'The append alias works like the append flag', 'type' => 'framework'],1607 'phpOMS\tests\System\File\Ftp\FileTest:testStaticPrepend' => ['description' => 'A file can be prepended with additional content', 'type' => 'framework'],1608 'phpOMS\tests\System\File\Ftp\FileTest:testStaticPrependAlias' => ['description' => 'The prepend alias works like the prepend flag', 'type' => 'framework'],1609 'phpOMS\tests\System\File\Ftp\FileTest:testStaticGet' => ['description' => 'The content of a file can be read', 'type' => 'framework'],1610 'phpOMS\tests\System\File\Ftp\FileTest:testStaticParent' => ['description' => 'The parent directory of a file can be returned', 'type' => 'framework'],1611 'phpOMS\tests\System\File\Ftp\FileTest:testStaticExtension' => ['description' => 'The extension of a file can be returned', 'type' => 'framework'],1612 'phpOMS\tests\System\File\Ftp\FileTest:testStaticName' => ['description' => 'The name of a file can be returned', 'type' => 'framework'],1613 'phpOMS\tests\System\File\Ftp\FileTest:testStaticBaseName' => ['description' => 'The basename of a file can be returned', 'type' => 'framework'],1614 'phpOMS\tests\System\File\Ftp\FileTest:testStaticDirname' => ['description' => 'The file name of a file can be returned', 'type' => 'framework'],1615 'phpOMS\tests\System\File\Ftp\FileTest:testStaticDirectoryPath' => ['description' => 'The file path of a file can be returned', 'type' => 'framework'],1616 'phpOMS\tests\System\File\Ftp\FileTest:testStaticCount' => ['description' => 'The count of a file is always 1', 'type' => 'framework'],1617 'phpOMS\tests\System\File\Ftp\FileTest:testStaticCreatedAt' => ['description' => 'The directories creation date can be returned', 'type' => 'framework'],1618 'phpOMS\tests\System\File\Ftp\FileTest:testStaticChangedAt' => ['description' => 'The directories last change date can be returned', 'type' => 'framework'],1619 'phpOMS\tests\System\File\Ftp\FileTest:testStaticDelete' => ['description' => 'A file can be deleted', 'type' => 'framework'],1620 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticDelete' => ['description' => 'A none-existing file cannot be deleted', 'type' => 'framework'],1621 'phpOMS\tests\System\File\Ftp\FileTest:testStaticSize' => ['description' => 'The size of a file can be returned', 'type' => 'framework'],1622 'phpOMS\tests\System\File\Ftp\FileTest:testStaticPermission' => ['description' => 'The permission of a file can be returned', 'type' => 'framework'],1623 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticPermission' => ['description' => 'The permission of a none-existing file is negative', 'type' => 'framework'],1624 'phpOMS\tests\System\File\Ftp\FileTest:testStaticCopy' => ['description' => 'A file can be copied to a different location', 'type' => 'framework'],1625 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticCopy' => ['description' => 'A file cannot be copied to a different location if the destination already exists', 'type' => 'framework'],1626 'phpOMS\tests\System\File\Ftp\FileTest:testStaticCopyOverwrite' => ['description' => 'A file can be forced to be copied to a different location even if the destination already exists', 'type' => 'framework'],1627 'phpOMS\tests\System\File\Ftp\FileTest:testStaticMove' => ['description' => 'A file can be moved to a different location', 'type' => 'framework'],1628 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidStaticMove' => ['description' => 'A file cannot be moved to a different location if the destination already exists', 'type' => 'framework'],1629 'phpOMS\tests\System\File\Ftp\FileTest:testStaticMoveOverwrite' => ['description' => 'A file can be forced to be moved to a different location even if the destination already exists', 'type' => 'framework'],1630 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidSizePath' => ['description' => 'The size of a none-existing file is negative', 'type' => 'framework'],1631 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidCopyPath' => ['description' => 'A none-existing file cannot be copied', 'type' => 'framework'],1632 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidMovePath' => ['description' => 'A none-existing file cannot be moved', 'type' => 'framework'],1633 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidGetPath' => ['description' => 'Reading the content of a none-existing file throws a PathException', 'type' => 'framework'],1634 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidCreatedPath' => ['description' => 'Reading the created date of a none-existing file throws a PathException', 'type' => 'framework'],1635 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidChangedPath' => ['description' => 'Reading the last change date of a none-existing file throws a PathException', 'type' => 'framework'],1636 'phpOMS\tests\System\File\Ftp\FileTest:testInvalidOwnerPath' => ['description' => 'Reading the owner of a none-existing file throws a PathException', 'type' => 'framework'],1637 'phpOMS\tests\System\File\StorageTest' => ['description' => 'Storage handler for the different storage handler types', 'type' => 'framework'],1638 'phpOMS\tests\System\File\StorageTest:testStorageDefault' => ['description' => 'By default the local storage handler is returned', 'type' => 'framework'],1639 'phpOMS\tests\System\File\StorageTest:testStoragePreDefined' => ['description' => 'The pre-defined storage handlers can be returned by their name', 'type' => 'framework'],1640 'phpOMS\tests\System\File\StorageTest:testInputOutput' => ['description' => 'Storages can be registered and returned', 'type' => 'framework'],1641 'phpOMS\tests\System\File\StorageTest:testInvalidRegister' => ['description' => 'Registered storage handlers cannot be overwritten', 'type' => 'framework'],1642 'phpOMS\tests\System\File\StorageTest:testInvalidStorage' => ['description' => 'A invalid or none-existing storage throws a Exception', 'type' => 'framework'],1643 'phpOMS\tests\System\File\FileUtilsTest' => ['description' => 'Storage handler for the different storage handler types', 'type' => 'framework'],1644 'phpOMS\tests\System\File\FileUtilsTest:testExtension' => ['description' => 'File extensions can be categorized', 'type' => 'framework'],1645 'phpOMS\tests\System\File\FileUtilsTest:testAbsolute' => ['description' => 'A relative path can be turned into an absolute path', 'type' => 'framework'],1646 'phpOMS\tests\System\File\FileUtilsTest:testPermissionToOctal' => ['description' => 'Permissions can be turned into octal values', 'type' => 'framework'],1647 'phpOMS\tests\System\File\FileUtilsTest:testChangeFileEncoding' => ['description' => 'The encoding of a file can be changed', 'type' => 'framework'],1648 'phpOMS\tests\System\SystemUtilsTest' => ['description' => 'System information', 'type' => 'framework'],1649 'phpOMS\tests\System\SystemUtilsTest:testRAM' => ['description' => 'Test if it is possible to get information about the available RAM and usage', 'type' => 'framework'],1650 'phpOMS\tests\System\SystemUtilsTest:testCPUUsage' => ['description' => 'Test if it is possible to get information about the CPU usage', 'type' => 'framework'],1651 'phpOMS\tests\Uri\HttpUriTest' => ['description' => 'Http uri / url', 'type' => 'framework'],1652 'phpOMS\tests\Uri\HttpUriTest:testDefault' => ['description' => 'The http url has the expected default values after initialization', 'type' => 'framework'],1653 'phpOMS\tests\Uri\HttpUriTest:testValidator' => ['description' => 'A url can be validated', 'type' => 'framework'],1654 'phpOMS\tests\Uri\HttpUriTest:testSchemaInputOutput' => ['description' => 'The url schema can be parsed correctly from a url', 'type' => 'framework'],1655 'phpOMS\tests\Uri\HttpUriTest:testHostInputOutput' => ['description' => 'The host can be parsed correctly from a url', 'type' => 'framework'],1656 'phpOMS\tests\Uri\HttpUriTest:testUsernameInputOutput' => ['description' => 'The username can be parsed correctly from a url', 'type' => 'framework'],1657 'phpOMS\tests\Uri\HttpUriTest:testPasswordInputOutput' => ['description' => 'The password can be parsed correctly from a url', 'type' => 'framework'],1658 'phpOMS\tests\Uri\HttpUriTest:testBaseInputOutput' => ['description' => 'The base can be parsed correctly from a url', 'type' => 'framework'],1659 'phpOMS\tests\Uri\HttpUriTest:testStringify' => ['description' => 'The url can be turned into a string', 'type' => 'framework'],1660 'phpOMS\tests\Uri\HttpUriTest:testAuthorityInputOutput' => ['description' => 'The authority can be parsed correctly from a url', 'type' => 'framework'],1661 'phpOMS\tests\Uri\HttpUriTest:testUserinfoInputOutput' => ['description' => 'The user info can be parsed correctly from a url', 'type' => 'framework'],1662 'phpOMS\tests\Uri\HttpUriTest:testRootPathInputOutput' => ['description' => 'The root path can be set and returned', 'type' => 'framework'],1663 'phpOMS\tests\Uri\HttpUriTest:testPathOffsetInputOutput' => ['description' => 'The path offset can be set and returned', 'type' => 'framework'],1664 'phpOMS\tests\Uri\HttpUriTest:testSubdmonain' => ['description' => 'The subdomain can be parsed correctly from a url', 'type' => 'framework'],1665 'phpOMS\tests\Uri\HttpUriTest:testQueryData' => ['description' => 'The query data can be parsed correctly from a url', 'type' => 'framework'],1666 'phpOMS\tests\Uri\HttpUriTest:testFragment' => ['description' => 'The fragment data can be parsed correctly from a url', 'type' => 'framework'],1667 'phpOMS\tests\Uri\HttpUriTest:testPathData' => ['description' => 'The path data can be parsed correctly from a url', 'type' => 'framework'],1668 'phpOMS\tests\Uri\HttpUriTest:testRouteInputOutput' => ['description' => 'The route can be parsed correctly from a url', 'type' => 'framework'],1669 'phpOMS\tests\Uri\HttpUriTest:testInvalidUri' => ['description' => 'A invalid uri cannot get parsed', 'type' => 'framework'],1670 'phpOMS\tests\Uri\ArgumentTest' => ['description' => 'Argument uri / uri', 'type' => 'framework'],1671 'phpOMS\tests\Uri\ArgumentTest:testDefault' => ['description' => 'The argument uri has the expected default values after initialization', 'type' => 'framework'],1672 'phpOMS\tests\Uri\ArgumentTest:testValidator' => ['description' => 'A uri can be validated', 'type' => 'framework'],1673 'phpOMS\tests\Uri\ArgumentTest:testPathInputOutput' => ['description' => 'The path can be parsed correctly from a uri', 'type' => 'framework'],1674 'phpOMS\tests\Uri\ArgumentTest:testPathOffsetInputOutput' => ['description' => ' The path offset can be set and returned', 'type' => 'framework'],1675 'phpOMS\tests\Uri\ArgumentTest:testRouteInputOutput' => ['description' => 'The route can be parsed correctly from a uri', 'type' => 'framework'],1676 'phpOMS\tests\Uri\ArgumentTest:testQueryInputOutput' => ['description' => 'The query data can be parsed correctly from a uri', 'type' => 'framework'],1677 'phpOMS\tests\Uri\ArgumentTest:testFragmentInputOutput' => ['description' => 'The fragment can be parsed correctly from a uri', 'type' => 'framework'],1678 'phpOMS\tests\Uri\ArgumentTest:testStringify' => ['description' => 'The uri can be turned into a string', 'type' => 'framework'],1679 'phpOMS\tests\Uri\ArgumentTest:testRootPathInputOutput' => ['description' => 'The root path can be set and returned', 'type' => 'framework'],1680 'phpOMS\tests\Uri\UriFactoryTest' => ['description' => 'Http uri / url factory', 'type' => 'framework'],1681 'phpOMS\tests\Uri\UriFactoryTest:testDefault' => ['description' => 'The http url factory has the expected default values after initialization', 'type' => 'framework'],1682 'phpOMS\tests\Uri\UriFactoryTest:testQueryInputOutput' => ['description' => 'Data can be set to the factory and returned', 'type' => 'framework'],1683 'phpOMS\tests\Uri\UriFactoryTest:testOverwrite' => ['description' => 'Data can be forcefully overwritten', 'type' => 'framework'],1684 'phpOMS\tests\Uri\UriFactoryTest:testInvalidOverwrite' => ['description' => 'By default data is not overwritten in the factory', 'type' => 'framework'],1685 'phpOMS\tests\Uri\UriFactoryTest:testClearing' => ['description' => 'Data can be removed/cleared from the factory', 'type' => 'framework'],1686 'phpOMS\tests\Uri\UriFactoryTest:testInvalidClearing' => ['description' => 'None-existing data cannot be cleared from the factory', 'type' => 'framework'],1687 'phpOMS\tests\Uri\UriFactoryTest:testClean' => ['description' => 'Data can be removed from the factory by category', 'type' => 'framework'],1688 'phpOMS\tests\Uri\UriFactoryTest:testCleanWildcard' => ['description' => 'All data can be removed from the factory with a wildcard', 'type' => 'framework'],1689 'phpOMS\tests\Uri\UriFactoryTest:testClearingLike' => ['description' => 'Data can be removed from the factory with regular expression matches', 'type' => 'framework'],1690 'phpOMS\tests\Uri\UriFactoryTest:testInvalidClearingLike' => ['description' => 'Data which doesn\'t match the regular expression is not removed', 'type' => 'framework'],1691 'phpOMS\tests\Uri\UriFactoryTest:testBuilder' => ['description' => 'A url can be build with the defined factory data and/or build specific data', 'type' => 'framework'],1692 'phpOMS\tests\Uri\UriFactoryTest:testSetupBuild' => ['description' => 'The uri factory can be set up with default values from a url and build with these default values', 'type' => 'framework'],1693 // barcode1694 'phpOMS\tests\Utils\Compression\LZWTest' => ['description' => 'LZW compression', 'type' => 'framework'],1695 'phpOMS\tests\Utils\Compression\LZWTest:testLZW' => ['description' => 'A string can be LZW compressed and uncompressed', 'type' => 'framework'],1696 'phpOMS\tests\Utils\Converter\CurrencyTest' => ['description' => 'Currency converter', 'type' => 'framework'],1697 'phpOMS\tests\Utils\Converter\CurrencyTest:testCurrencyFromEur' => ['description' => 'A currency can be converted from euro to another currency', 'type' => 'framework'],1698 'phpOMS\tests\Utils\Converter\CurrencyTest:testCurrencyToEur' => ['description' => 'A currency can be converted to euro from another currency', 'type' => 'framework'],1699 'phpOMS\tests\Utils\Converter\CurrencyTest:testCurrency' => ['description' => 'A currency can be converted from one currency to another currency', 'type' => 'framework'],1700 'phpOMS\tests\Utils\Converter\CurrencyTest:testInvalidFromEur' => ['description' => 'A currency conversion from eur to a invalid currency throws a InvalidArgumentException', 'type' => 'framework'],1701 'phpOMS\tests\Utils\Converter\CurrencyTest:testInvalidToEur' => ['description' => 'A currency conversion from a invalid currency to eur throws a InvalidArgumentException', 'type' => 'framework'],1702 'phpOMS\tests\Utils\Converter\CurrencyTest:testInvalidConvert' => ['description' => 'A currency conversion from a invalid currency to a invalid currency throws a InvalidArgumentException', 'type' => 'framework'],1703 'phpOMS\tests\Utils\Converter\FileTest' => ['description' => 'File size converter', 'type' => 'framework'],1704 'phpOMS\tests\Utils\Converter\FileTest:testByteSizeToString' => ['description' => 'A byte number can be converted to a string representation', 'type' => 'framework'],1705 'phpOMS\tests\Utils\Converter\FileTest:testKilobyteSizeToString' => ['description' => 'A kilobyte number can be converted to a string representation', 'type' => 'framework'],1706 'phpOMS\tests\Utils\Converter\IpTest' => ['description' => 'IP converter', 'type' => 'framework'],1707 'phpOMS\tests\Utils\Converter\IpTest:testIp' => ['description' => 'An ip can be converted to a float', 'type' => 'framework'],1708 'phpOMS\tests\Utils\Converter\MeasurementTest' => ['description' => 'Measurement converter', 'type' => 'framework'],1709 'phpOMS\tests\Utils\Converter\MeasurementTest:testTemperature' => ['description' => 'Temperatures can be converted', 'type' => 'framework'],1710 'phpOMS\tests\Utils\Converter\MeasurementTest:testWeight' => ['description' => 'Weights can be converted', 'type' => 'framework'],1711 'phpOMS\tests\Utils\Converter\MeasurementTest:testLength' => ['description' => 'Lengths can be converted', 'type' => 'framework'],1712 'phpOMS\tests\Utils\Converter\MeasurementTest:testArea' => ['description' => 'Areas can be converted', 'type' => 'framework'],1713 'phpOMS\tests\Utils\Converter\MeasurementTest:testVolume' => ['description' => 'Volumes can be converted', 'type' => 'framework'],1714 'phpOMS\tests\Utils\Converter\MeasurementTest:testSpeed' => ['description' => 'Speeds can be converted', 'type' => 'framework'],1715 'phpOMS\tests\Utils\Converter\MeasurementTest:testTime' => ['description' => 'Times can be converted', 'type' => 'framework'],1716 'phpOMS\tests\Utils\Converter\MeasurementTest:testAngle' => ['description' => 'Angles can be converted', 'type' => 'framework'],1717 'phpOMS\tests\Utils\Converter\MeasurementTest:testPressure' => ['description' => 'Pressures can be converted', 'type' => 'framework'],1718 'phpOMS\tests\Utils\Converter\MeasurementTest:testEnergy' => ['description' => 'Energies can be converted', 'type' => 'framework'],1719 'phpOMS\tests\Utils\Converter\MeasurementTest:testFileSize' => ['description' => 'Filesizes can be converted', 'type' => 'framework'],1720 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidTemperatureFrom' => ['description' => 'Invalid conversion from unknown temperature throws a InvalidArgumentException', 'type' => 'framework'],1721 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidTemperatureTo' => ['description' => 'Invalid conversion to unknown temperature throws a InvalidArgumentException', 'type' => 'framework'],1722 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidWeightFrom' => ['description' => 'Invalid conversion from unknown weight throws a InvalidArgumentException', 'type' => 'framework'],1723 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidWeightTo' => ['description' => 'Invalid conversion to unknown weight throws a InvalidArgumentException', 'type' => 'framework'],1724 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidLengthFrom' => ['description' => 'Invalid conversion from unknown length throws a InvalidArgumentException', 'type' => 'framework'],1725 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidLengthTo' => ['description' => 'Invalid conversion to unknown length throws a InvalidArgumentException', 'type' => 'framework'],1726 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidAreaFrom' => ['description' => 'Invalid conversion from unknown area throws a InvalidArgumentException', 'type' => 'framework'],1727 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidAreaTo' => ['description' => 'Invalid conversion to unknown area throws a InvalidArgumentException', 'type' => 'framework'],1728 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidVolumeFrom' => ['description' => 'Invalid conversion from unknown volume throws a InvalidArgumentException', 'type' => 'framework'],1729 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidVolumeTo' => ['description' => 'Invalid conversion to unknown volume throws a InvalidArgumentException', 'type' => 'framework'],1730 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidSpeedFrom' => ['description' => 'Invalid conversion from unknown speed throws a InvalidArgumentException', 'type' => 'framework'],1731 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidSpeedTo' => ['description' => 'Invalid conversion to unknown speed throws a InvalidArgumentException', 'type' => 'framework'],1732 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidTimeFrom' => ['description' => 'Invalid conversion from unknown time throws a InvalidArgumentException', 'type' => 'framework'],1733 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidTimeTo' => ['description' => 'Invalid conversion to unknown time throws a InvalidArgumentException', 'type' => 'framework'],1734 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidAngleFrom' => ['description' => 'Invalid conversion from unknown angle throws a InvalidArgumentException', 'type' => 'framework'],1735 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidAngleTo' => ['description' => 'Invalid conversion to unknown angle throws a InvalidArgumentException', 'type' => 'framework'],1736 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidPressureFrom' => ['description' => 'Invalid conversion from unknown pressure throws a InvalidArgumentException', 'type' => 'framework'],1737 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidPressureTo' => ['description' => 'Invalid conversion to unknown pressure throws a InvalidArgumentException', 'type' => 'framework'],1738 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidEnergyPowerFrom' => ['description' => 'Invalid conversion from unknown energy throws a InvalidArgumentException', 'type' => 'framework'],1739 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidEnergyPowerTo' => ['description' => 'Invalid conversion to unknown energy throws a InvalidArgumentException', 'type' => 'framework'],1740 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidFileSizeFrom' => ['description' => 'Invalid conversion from unknown filesize throws a InvalidArgumentException', 'type' => 'framework'],1741 'phpOMS\tests\Utils\Converter\MeasurementTest:testInvalidFileSizeTo' => ['description' => 'Invalid conversion to unknown filesize throws a InvalidArgumentException', 'type' => 'framework'],1742 'phpOMS\tests\Utils\Converter\FileSizeTypeTest' => ['description' => 'File size types', 'type' => 'framework'],1743 'phpOMS\tests\Utils\Converter\FileSizeTypeTest:testAutoFormat' => ['description' => 'File sizes can get automatically formatted according to their size', 'type' => 'framework'],1744 'phpOMS\tests\Utils\Converter\NumericTest' => ['description' => 'Numeric converter', 'type' => 'framework'],1745 'phpOMS\tests\Utils\Converter\NumericTest:testArabicToRoman' => ['description' => 'Arabic numbers can be converted to roman numbers', 'type' => 'framework'],1746 'phpOMS\tests\Utils\Converter\NumericTest:testRomanToArabic' => ['description' => 'Roman numbers can be converted to arabic numbers', 'type' => 'framework'],1747 'phpOMS\tests\Utils\Converter\NumericTest:testAlphaToNumeric' => ['description' => 'Letters can be converted to numbers', 'type' => 'framework'],1748 'phpOMS\tests\Utils\Converter\NumericTest:testNumericToAlpha' => ['description' => 'Numbers can be converted to letters', 'type' => 'framework'],1749 'phpOMS\tests\Utils\Converter\NumericTest:testBase' => ['description' => 'Numbers can be converted between bases', 'type' => 'framework'],1750 'phpOMS\tests\Utils\Encoding\Huffman\HuffmanTest' => ['description' => 'Data can be encoded with huffman', 'type' => 'framework'],1751 'phpOMS\tests\Utils\Encoding\Huffman\HuffmanTest:testEmpty' => ['description' => 'Encoding and decoding empty data results in an empty output', 'type' => 'framework'],1752 'phpOMS\tests\Utils\Encoding\Huffman\HuffmanTest:testHuffman' => ['description' => 'Data can be huffman encoded and decoded', 'type' => 'framework'],1753 'phpOMS\tests\Utils\Encoding\Huffman\DictionaryTest' => ['description' => 'Dictionary for the huffman encoding', 'type' => 'framework'],1754 'phpOMS\tests\Utils\Encoding\Huffman\DictionaryTest:testInvalidGetCharacter' => ['description' => 'Only single characters can be returned from the dictionary. Multiple characters throw a InvalidArgumentException', 'type' => 'framework'],1755 'phpOMS\tests\Utils\Encoding\Huffman\DictionaryTest:testNotExistingGetCharacter' => ['description' => 'A none-existing character throws a InvalidArgumentException', 'type' => 'framework'],1756 'phpOMS\tests\Utils\Encoding\Huffman\DictionaryTest:testInvalidSetCharacter' => ['description' => 'Only single characters can be set in the dictionary. Multiple characters throw a InvalidArgumentException', 'type' => 'framework'],1757 'phpOMS\tests\Utils\Encoding\Huffman\DictionaryTest:testInvalidSetDuplicateCharacter' => ['description' => 'Dictionary elements cannot be overwritten and throw a InvalidArgumentException', 'type' => 'framework'],1758 'phpOMS\tests\Utils\Encoding\Huffman\DictionaryTest:testInvalidFormattedValue' => ['description' => 'Invalid dictionary values throw a InvalidArgumentException', 'type' => 'framework'],1759 'phpOMS\tests\Utils\Encoding\CaesarTest' => ['description' => 'Caesar text encoding/decoding', 'type' => 'framework'],1760 'phpOMS\tests\Utils\Encoding\CaesarTest:testEncoding' => ['description' => 'Text can be encoded and decoded with the ceasar encoding', 'type' => 'framework'],1761 'phpOMS\tests\Utils\Encoding\GrayTest' => ['description' => 'Gray text encoding/decoding', 'type' => 'framework'],1762 'phpOMS\tests\Utils\Encoding\GrayTest:testEncoding' => ['description' => 'Text can be encoded and decoded with the gray encoding', 'type' => 'framework'],1763 'phpOMS\tests\Utils\Encoding\XorEncodingTest' => ['description' => 'XOR text encoding/decoding', 'type' => 'framework'],1764 'phpOMS\tests\Utils\Encoding\XorEncodingTest:testEncoding' => ['description' => 'Text can be encoded and decoded with the xor encoding', 'type' => 'framework'],1765 'phpOMS\tests\Utils\Git\GitTest' => ['description' => ' Git utilities', 'type' => 'framework'],1766 'phpOMS\tests\Utils\Git\GitTest:testBinary' => ['description' => 'The git path can be returned', 'type' => 'framework'],1767 'phpOMS\tests\Utils\Git\AuthorTest' => ['description' => 'Git author', 'type' => 'framework'],1768 'phpOMS\tests\Utils\Git\AuthorTest:testDefault' => ['description' => 'The author has the expected default values after initialization', 'type' => 'framework'],1769 'phpOMS\tests\Utils\Git\AuthorTest:testConstructInputOutput' => ['description' => 'The author name and email can be set during initialization and returned', 'type' => 'framework'],1770 'phpOMS\tests\Utils\Git\AuthorTest:testCommitCountInputOutput' => ['description' => 'The commit count can be set and returned', 'type' => 'framework'],1771 'phpOMS\tests\Utils\Git\AuthorTest:testAdditionCountInputOutput' => ['description' => 'The addition count can be set and returned', 'type' => 'framework'],1772 'phpOMS\tests\Utils\Git\AuthorTest:testRemovalCountInputOutput' => ['description' => 'The removal count can be set and returned', 'type' => 'framework'],1773 'phpOMS\tests\Utils\Git\BranchTest' => ['description' => 'Git branch', 'type' => 'framework'],1774 'phpOMS\tests\Utils\Git\BranchTest:testDefault' => ['description' => 'The branch has the expected default values after initialization', 'type' => 'framework'],1775 'phpOMS\tests\Utils\Git\BranchTest:testConstructInputOutput' => ['description' => 'The branch name can be set during initialization and returned', 'type' => 'framework'],1776 'phpOMS\tests\Utils\Git\CommitTest' => ['description' => 'Git commit', 'type' => 'framework'],1777 'phpOMS\tests\Utils\Git\CommitTest:testDefault' => ['description' => 'The commit has the expected default values after initialization', 'type' => 'framework'],1778 'phpOMS\tests\Utils\Git\CommitTest:testFileInputOutput' => ['description' => 'A file can be added and returned', 'type' => 'framework'],1779 'phpOMS\tests\Utils\Git\CommitTest:testInvalidOverwrite' => ['description' => 'A file can only be added one time', 'type' => 'framework'],1780 'phpOMS\tests\Utils\Git\CommitTest:testRemoveFile' => ['description' => 'A file can be removed', 'type' => 'framework'],1781 'phpOMS\tests\Utils\Git\CommitTest:testInvalidRemoveFile' => ['description' => 'A none-existing file cannot be removed', 'type' => 'framework'],1782 'phpOMS\tests\Utils\Git\CommitTest:testChangeInputOutput' => ['description' => 'A change can be added and returned', 'type' => 'framework'],1783 'phpOMS\tests\Utils\Git\CommitTest:testDuplicateLineChange' => ['description' => 'Adding the same change throws a Exception', 'type' => 'framework'],1784 'phpOMS\tests\Utils\Git\CommitTest:testMessageInputOutput' => ['description' => 'A commit message can be set and returned', 'type' => 'framework'],1785 'phpOMS\tests\Utils\Git\CommitTest:testAuthorInputOutput' => ['description' => 'The author can be set and returned', 'type' => 'framework'],1786 'phpOMS\tests\Utils\Git\CommitTest:testBranchInputOutput' => ['description' => 'The branch can be set and returned', 'type' => 'framework'],1787 'phpOMS\tests\Utils\Git\CommitTest:testTagInputOutput' => ['description' => 'The tag can be set and returned', 'type' => 'framework'],1788 'phpOMS\tests\Utils\Git\CommitTest:testDateInputOutput' => ['description' => 'The date can be set and returned', 'type' => 'framework'],1789 'phpOMS\tests\Utils\Git\CommitTest:testRepositoryInputOutput' => ['description' => 'The repository can be set and returned', 'type' => 'framework'],1790 'phpOMS\tests\Utils\Git\RepositoryTest' => ['description' => 'Git repository', 'type' => 'framework'],1791 'phpOMS\tests\Utils\Git\RepositoryTest:testDefault' => ['description' => 'The repository has the expected default values after initialization', 'type' => 'framework'],1792 'phpOMS\tests\Utils\Git\TagTest' => ['description' => 'Git repository', 'type' => 'framework'],1793 'phpOMS\tests\Utils\Git\TagTest:testDefault' => ['description' => 'The tag has the expected default values after initialization', 'type' => 'framework'],1794 'phpOMS\tests\Utils\Git\TagTest:testConstructorInputOutput' => ['description' => 'The tag name can be set during initialization and returned', 'type' => 'framework'],1795 'phpOMS\tests\Utils\Git\TagTest:testMessageInputOutput' => ['description' => 'The message can be set and returned', 'type' => 'framework'],1796 'phpOMS\tests\Utils\IO\Csv\CsvSettingsTest' => ['description' => 'Csv file settings', 'type' => 'framework'],1797 'phpOMS\tests\Utils\IO\Csv\CsvSettingsTest:testDelimiter' => ['description' => 'The delimiter in a csv file can be guessed', 'type' => 'framework'],1798 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest' => ['description' => 'Spreadsheet database mapper', 'type' => 'framework'],1799 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testInsertOds' => ['description' => 'Data can be inserted into a database from an ods files', 'type' => 'framework'],1800 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testInsertXls' => ['description' => 'Data can be inserted into a database from a xls files', 'type' => 'framework'],1801 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testInsertXlsx' => ['description' => 'Data can be inserted into a database from a xlsx files', 'type' => 'framework'],1802 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testUpdateOds' => ['description' => 'Data can be updated in a database from an ods files', 'type' => 'framework'],1803 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testUpdateXls' => ['description' => 'Data can be updated in a database from a xls files', 'type' => 'framework'],1804 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testUpdateXlsx' => ['description' => 'Data can be updated in a database from a xlsx files', 'type' => 'framework'],1805 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testSelectOds' => ['description' => 'Data can be inserted into an ods files from a database', 'type' => 'framework'],1806 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testSelectXls' => ['description' => 'Data can be inserted into a xls files from a database', 'type' => 'framework'],1807 'phpOMS\tests\Utils\IO\Spreadsheet\SpreadsheetDatabaseMapperTest:testSelectXlsx' => ['description' => 'Data can be inserted into a xlsx files from a database', 'type' => 'framework'],1808 'phpOMS\tests\Utils\IO\Zip\GzTest' => ['description' => 'Gz archive', 'type' => 'framework'],1809 'phpOMS\tests\Utils\IO\Zip\GzTest:testGz' => ['description' => 'Data can be gz packed and unpacked', 'type' => 'framework'],1810 'phpOMS\tests\Utils\IO\Zip\GzTest:testInvalidGz' => ['description' => 'A gz archive cannot be overwritten', 'type' => 'framework'],1811 'phpOMS\tests\Utils\IO\Zip\GzTest:testInvalidUnpackSource' => ['description' => 'A none-existing source cannot be unpacked', 'type' => 'framework'],1812 'phpOMS\tests\Utils\IO\Zip\GzTest:testInvalidUnpackDestination' => ['description' => 'A destination cannot be overwritten', 'type' => 'framework'],1813 'phpOMS\tests\Utils\IO\Zip\TarGzTest' => ['description' => 'TarGz archive', 'type' => 'framework'],1814 'phpOMS\tests\Utils\IO\Zip\TarGzTest:testTarGz' => ['description' => 'Data can be tar gz packed and unpacked', 'type' => 'framework'],1815 'phpOMS\tests\Utils\IO\Zip\TarGzTest:testInvalidTarGz' => ['description' => 'A tar gz archive cannot be overwritten by default', 'type' => 'framework'],1816 'phpOMS\tests\Utils\IO\Zip\TarGzTest:testInvalidUnpackSource' => ['description' => 'A none-existing source cannot be unpacked', 'type' => 'framework'],1817 'phpOMS\tests\Utils\IO\Zip\TarGzTest:testInvalidUnpackDestination' => ['description' => 'A destination cannot be overwritten', 'type' => 'framework'],1818 'phpOMS\tests\Utils\IO\Zip\TarTest' => ['description' => 'Tar archive', 'type' => 'framework'],1819 'phpOMS\tests\Utils\IO\Zip\TarTest:testTar' => ['description' => 'Data can be tar packed and unpacked', 'type' => 'framework'],1820 'phpOMS\tests\Utils\IO\Zip\TarTest:testInvalidTarUnpack' => ['description' => 'Extracting invalid tar files fail', 'type' => 'framework'],1821 'phpOMS\tests\Utils\IO\Zip\TarTest:testInvalidTar' => ['description' => 'A tar archive cannot be overwritten by default', 'type' => 'framework'],1822 'phpOMS\tests\Utils\IO\Zip\TarTest:testInvalidUnpackSource' => ['description' => 'A none-existing source cannot be unpacked', 'type' => 'framework'],1823 'phpOMS\tests\Utils\IO\Zip\TarTest:testInvalidUnpackDestination' => ['description' => 'A destination cannot be overwritten', 'type' => 'framework'],1824 'phpOMS\tests\Utils\IO\Zip\ZipTest' => ['description' => 'Zip archive', 'type' => 'framework'],1825 'phpOMS\tests\Utils\IO\Zip\ZipTest:testZip' => ['description' => 'Data can be zip packed and unpacked', 'type' => 'framework'],1826 'phpOMS\tests\Utils\IO\Zip\ZipTest:testInvalidZipDestination' => ['description' => 'The output of the zip archive needs to be properly defined', 'type' => 'framework'],1827 'phpOMS\tests\Utils\IO\Zip\ZipTest:testInvalidZipUnpack' => ['description' => 'Extracting invalid zip files fail', 'type' => 'framework'],1828 'phpOMS\tests\Utils\IO\Zip\ZipTest:testInvalidZip' => ['description' => 'A zip archive cannot be overwritten by default', 'type' => 'framework'],1829 'phpOMS\tests\Utils\IO\Zip\ZipTest:testInvalidUnpackSource' => ['description' => 'A none-existing source cannot be unpacked', 'type' => 'framework'],1830 'phpOMS\tests\Utils\IO\Zip\ZipTest:testInvalidUnpackDestination' => ['description' => 'A destination cannot be overwritten', 'type' => 'framework'],1831 'phpOMS\tests\Utils\Parser\Php\ArrayParserTest' => ['description' => 'Array data serializer as code', 'type' => 'framework'],1832 'phpOMS\tests\Utils\Parser\Php\ArrayParserTest:testParser' => ['description' => 'An array can be encoded and decoded as php code', 'type' => 'framework'],1833 'phpOMS\tests\Utils\Parser\Php\ArrayParserTest:testInvalidValueType' => ['description' => 'A value can be encoded and decoded into php code', 'type' => 'framework'],1834 // markdown1835 'phpOMS\tests\Utils\RnG\ArrayRandomizeTest' => ['description' => 'Array randomizer', 'type' => 'framework'],1836 'phpOMS\tests\Utils\RnG\ArrayRandomizeTest:testYates' => ['description' => 'An array can be randomized using the yates algorithm', 'type' => 'framework'],1837 'phpOMS\tests\Utils\RnG\ArrayRandomizeTest:testKnuth' => ['description' => 'An array can be randomized using the knuth algorithm', 'type' => 'framework'],1838 'phpOMS\tests\Utils\RnG\DateTimeTest' => ['description' => 'Date time randomizer', 'type' => 'framework'],1839 'phpOMS\tests\Utils\RnG\DateTimeTest:testRnG' => ['description' => 'A random date time can be generated', 'type' => 'framework'],1840 'phpOMS\tests\Utils\RnG\FileTest' => ['description' => 'File extension randomizer', 'type' => 'framework'],1841 'phpOMS\tests\Utils\RnG\FileTest:testRnGExtension' => ['description' => 'A random file extension can be generated', 'type' => 'framework'],1842 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest' => ['description' => 'Random number generator', 'type' => 'framework'],1843 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest:testBsdRng' => ['description' => 'The bsd random number generator starts with the correct sequence', 'type' => 'framework'],1844 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest:testBsdRngEqual' => ['description' => 'The same bsd seed generates the same random number', 'type' => 'framework'],1845 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest:testBsdRngNotEqual' => ['description' => 'Different bsd seeds generate different random numbers', 'type' => 'framework'],1846 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest:testMsRng' => ['description' => 'The msvcrt random number generator starts with the correct sequence', 'type' => 'framework'],1847 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest:testMsRngEqual' => ['description' => 'The same msvcrt seed generates the same random number', 'type' => 'framework'],1848 'phpOMS\tests\Utils\RnG\LinearCongruentialGeneratorTest:testMsRngNotEqual' => ['description' => 'Different msvcrt seeds generate different random numbers', 'type' => 'framework'],1849 'phpOMS\tests\Utils\RnG\NameTest' => ['description' => 'Random name generator', 'type' => 'framework'],1850 'phpOMS\tests\Utils\RnG\NameTest:testRandom' => ['description' => 'Random female and male names can be generated', 'type' => 'framework'],1851 'phpOMS\tests\Utils\RnG\PhoneTest' => ['description' => 'Random phone number generator', 'type' => 'framework'],1852 'phpOMS\tests\Utils\RnG\PhoneTest:testRnG' => ['description' => 'Random phone numbers can be generated', 'type' => 'framework'],1853 'phpOMS\tests\Utils\RnG\StringUtilsTest' => ['description' => 'Random string generator', 'type' => 'framework'],1854 'phpOMS\tests\Utils\RnG\StringUtilsTest:testStrings' => ['description' => 'Random strings can be generated', 'type' => 'framework'],1855 'phpOMS\tests\Utils\RnG\TextTest' => ['description' => 'Random text generator', 'type' => 'framework'],1856 'phpOMS\tests\Utils\RnG\TextTest:testRnG' => ['description' => 'Random text can be generated', 'type' => 'framework'],1857 'phpOMS\tests\Utils\TaskSchedule\CronJobTest' => ['description' => 'Cron job', 'type' => 'framework'],1858 'phpOMS\tests\Utils\TaskSchedule\CronJobTest:testDefault' => ['description' => 'The cron job has the expected default values after initialization', 'type' => 'framework'],1859 'phpOMS\tests\Utils\TaskSchedule\CronJobTest:testCreateJobWithData' => ['description' => 'A cron job can be created from an array and rendered', 'type' => 'framework'],1860 'phpOMS\tests\Utils\TaskSchedule\CronTest' => ['description' => 'Cron handler', 'type' => 'framework'],1861 'phpOMS\tests\Utils\TaskSchedule\CronTest:testDefault' => ['description' => 'The cron handler has the expected default values after initialization', 'type' => 'framework'],1862 'phpOMS\tests\Utils\TaskSchedule\CronTest:testGuessBinary' => ['description' => 'The cron binary location path can be guessed', 'type' => 'framework'],1863 'phpOMS\tests\Utils\TaskSchedule\CronTest:testCronJobInputOutput' => ['description' => 'A cron job can be created and returned', 'type' => 'framework'],1864 'phpOMS\tests\Utils\TaskSchedule\CronTest:testInvalidCronJobName' => ['description' => 'A none-existing cron name cannot be returned', 'type' => 'framework'],1865 'phpOMS\tests\Utils\TaskSchedule\CronTest:testCronJobUpdate' => ['description' => 'A cron job can be updated', 'type' => 'framework'],1866 'phpOMS\tests\Utils\TaskSchedule\CronTest:testDelete' => ['description' => 'A cron job can be deleted', 'type' => 'framework'],1867 'phpOMS\tests\Utils\TaskSchedule\IntervalTest' => ['description' => 'Cron handler', 'type' => 'framework'],1868 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testDefault' => ['description' => 'The interval has the expected default values after initialization', 'type' => 'framework'],1869 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testConstructorInputOutput' => ['description' => 'The start date can be set during initialization and returned', 'type' => 'framework'],1870 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testStartInputOutput' => ['description' => 'The start date can set and returned', 'type' => 'framework'],1871 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testEndInputOutput' => ['description' => 'The end date can set and returned', 'type' => 'framework'],1872 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testMaxExecutionInputOutput' => ['description' => 'The maximum execution duration can set and returned', 'type' => 'framework'],1873 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testMinuteInputOutput' => ['description' => 'An execution minute can be added and returned', 'type' => 'framework'],1874 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testMinuteOverwriteInputOutput' => ['description' => 'An execution minute can be overwritten', 'type' => 'framework'],1875 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testHourInputOutput' => ['description' => 'An execution hour can be added and returned', 'type' => 'framework'],1876 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testHourOverwriteInputOutput' => ['description' => 'An execution hour can be overwritten', 'type' => 'framework'],1877 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testYearInputOutput' => ['description' => 'An execution year can be added and returned', 'type' => 'framework'],1878 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testYearOverwriteInputOutput' => ['description' => 'An execution year can be overwritten', 'type' => 'framework'],1879 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testDayOfMonthInputOutput' => ['description' => 'An execution day of month can be added and returned', 'type' => 'framework'],1880 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testDayOfMonthOverwriteInputOutput' => ['description' => 'An execution day of month can be overwritten', 'type' => 'framework'],1881 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testDayOfWeekInputOutput' => ['description' => 'An execution day of week can be added and returned', 'type' => 'framework'],1882 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testDayOfWeekOverwriteInputOutput' => ['description' => 'An execution day of week can be overwritten', 'type' => 'framework'],1883 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testSerialize' => ['description' => 'A interval can be serialized', 'type' => 'framework'],1884 'phpOMS\tests\Utils\TaskSchedule\IntervalTest:testUnserialize' => ['description' => 'A serialized interval can be unserialized', 'type' => 'framework'],1885 'phpOMS\tests\Utils\TaskSchedule\SchedulerAbstractTest' => ['description' => 'Scheduler abstraction', 'type' => 'framework'],1886 'phpOMS\tests\Utils\TaskSchedule\SchedulerAbstractTest:testDefault' => ['description' => 'The scheduler has the expected default values after initialization', 'type' => 'framework'],1887 'phpOMS\tests\Utils\TaskSchedule\SchedulerAbstractTest:testGuessBinary' => ['description' => 'The scheduler binary location path can be guessed', 'type' => 'framework'],1888 'phpOMS\tests\Utils\TaskSchedule\SchedulerFactoryTest' => ['description' => 'Scheduler factory for creating cron/task handlers', 'type' => 'framework'],1889 'phpOMS\tests\Utils\TaskSchedule\SchedulerFactoryTest:testCreate' => ['description' => 'The correct scheduler is crated depending on the operating system', 'type' => 'framework'],1890 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest' => ['description' => 'Job/task abstraction', 'type' => 'framework'],1891 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testDefault' => ['description' => 'The task abstraction has the expected default values after initialization', 'type' => 'framework'],1892 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testCommandInputOutput' => ['description' => 'The command can be set and returned', 'type' => 'framework'],1893 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testIntervalInputOutput' => ['description' => 'The interval can be set and returned', 'type' => 'framework'],1894 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testStatusInputOutput' => ['description' => 'The status can be set and returned', 'type' => 'framework'],1895 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testCommentInputOutput' => ['description' => 'The comment can be set and returned', 'type' => 'framework'],1896 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testLastRuntimeInputOutput' => ['description' => 'The last runtime can be set and returned', 'type' => 'framework'],1897 'phpOMS\tests\Utils\TaskSchedule\TaskAbstractTest:testNextRuntimeInputOutput' => ['description' => 'The next runtime can be set and returned', 'type' => 'framework'],1898 'phpOMS\tests\Utils\TaskSchedule\TaskFactoryTest' => ['description' => 'Task factory for creating cron jobs/tasks', 'type' => 'framework'],1899 'phpOMS\tests\Utils\TaskSchedule\TaskFactoryTest:testFactory' => ['description' => 'The correct task is crated depending on the operating system', 'type' => 'framework'],1900 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest' => ['description' => 'Task schedule handler', 'type' => 'framework'],1901 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest:testDefault' => ['description' => 'The task handler has the expected default values after initialization', 'type' => 'framework'],1902 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest:testGuessBinary' => ['description' => 'The task binary location path can be guessed', 'type' => 'framework'],1903 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest:testTaskScheduleInputOutput' => ['description' => 'A task can be created and returned', 'type' => 'framework'],1904 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest:testInvalidTaskScheduleName' => ['description' => 'A none-existing task name cannot be returned', 'type' => 'framework'],1905 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest:testTaskScheduleUpdate' => ['description' => 'A task can be updated', 'type' => 'framework'],1906 'phpOMS\tests\Utils\TaskSchedule\TaskSchedulerTest:testDelete' => ['description' => 'A task can be deleted', 'type' => 'framework'],1907 'phpOMS\tests\Utils\ArrayUtilsTest' => ['description' => 'Array utilities', 'type' => 'framework'],1908 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayInputOutput' => ['description' => 'Array values can be set and returned with a path', 'type' => 'framework'],1909 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayInvalidArrayPath' => ['description' => 'A invalid array path returns null', 'type' => 'framework'],1910 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayInRecursive' => ['description' => 'Test recursively if a value is in an array', 'type' => 'framework'],1911 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayDelete' => ['description' => 'An array element can be removed by its path', 'type' => 'framework'],1912 'phpOMS\tests\Utils\ArrayUtilsTest:testInvalidArrayDelete' => ['description' => 'Deleting an invalid array path returns the original array', 'type' => 'framework'],1913 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayRecursiveSum' => ['description' => 'The recursive sum of all values in an array can be calculated', 'type' => 'framework'],1914 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayFlatten' => ['description' => 'A multi-dimensional array can be flatten to a one-dimensional array', 'type' => 'framework'],1915 'phpOMS\tests\Utils\ArrayUtilsTest:testArraySum' => ['description' => 'The sum of an array can be calculated', 'type' => 'framework'],1916 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayAllIn' => ['description' => 'An array can be checked if it contains multiple defined elements', 'type' => 'framework'],1917 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayToCsv' => ['description' => 'An array can be checked if it contains multiple defined elements', 'type' => 'framework'],1918 'phpOMS\tests\Utils\ArrayUtilsTest:testArgHas' => ['description' => 'An array can be checked if it has an element and returns its index', 'type' => 'framework'],1919 'phpOMS\tests\Utils\ArrayUtilsTest:testArrayAnyIn' => ['description' => 'An array can be turned into a csv string', 'type' => 'framework'],1920 'phpOMS\tests\Utils\ArrayUtilsTest:testInvalidArgHas' => ['description' => 'A none-existing argument in an array returns a negative value', 'type' => 'framework'],1921 'phpOMS\tests\Utils\ArrayUtilsTest:testArgGet' => ['description' => 'The argument value in an array can be returned', 'type' => 'framework'],1922 'phpOMS\tests\Utils\ArrayUtilsTest:testInvalidArgGet' => ['description' => 'A none-existing argument in an array returns null', 'type' => 'framework'],1923 'phpOMS\tests\Utils\ArrayUtilsTest:testPowerInt' => ['description' => 'All array values in an array can be potentiated by an integer', 'type' => 'framework'],1924 'phpOMS\tests\Utils\ArrayUtilsTest:testPowerFloat' => ['description' => 'All array values in an array can be potentiated by a float', 'type' => 'framework'],1925 'phpOMS\tests\Utils\ArrayUtilsTest:testSqrt' => ['description' => 'All array values in an array can be square rooted', 'type' => 'framework'],1926 'phpOMS\tests\Utils\ArrayUtilsTest:testAbs' => ['description' => 'All array values in an array can be turned into their absolute value', 'type' => 'framework'],1927 'phpOMS\tests\Utils\ColorUtilsTest' => ['description' => 'Color utilities', 'type' => 'framework'],1928 'phpOMS\tests\Utils\ColorUtilsTest:testIntToRgb' => ['description' => 'A integer can be converted to rgb', 'type' => 'framework'],1929 'phpOMS\tests\Utils\ColorUtilsTest:testRgbToInt' => ['description' => 'Rgb can be converted to a integer', 'type' => 'framework'],1930 'phpOMS\tests\Utils\ImageUtilsTest' => ['description' => 'Image utilities', 'type' => 'framework'],1931 'phpOMS\tests\Utils\ImageUtilsTest:testImage' => ['description' => 'Base64 image data can be decoded to an image', 'type' => 'framework'],1932 'phpOMS\tests\Utils\NumericUtilsTest' => ['description' => 'Numeric utilities', 'type' => 'framework'],1933 'phpOMS\tests\Utils\NumericUtilsTest:testShift' => ['description' => 'Integers can be unsigned right shifted', 'type' => 'framework'],1934 'phpOMS\tests\Utils\PermutationTest' => ['description' => 'Permutation utilities', 'type' => 'framework'],1935 'phpOMS\tests\Utils\PermutationTest:testPermute' => ['description' => 'An array can be permuted', 'type' => 'framework'],1936 'phpOMS\tests\Utils\PermutationTest:testIsPermutation' => ['description' => 'Two string can be checked if they are a permutation of each other', 'type' => 'framework'],1937 'phpOMS\tests\Utils\PermutationTest:testIsPalindrome' => ['description' => 'A string can be checked if it is a palindrome', 'type' => 'framework'],1938 'phpOMS\tests\Utils\PermutationTest:testPermutate' => ['description' => 'An array can be permuted with a permutation key', 'type' => 'framework'],1939 'phpOMS\tests\Utils\PermutationTest:testWrongPermuteKeyLength' => ['description' => 'A none-existing permutation key throws a OutOfBoundsException', 'type' => 'framework'],1940 'phpOMS\tests\Utils\StringCompareTest' => ['description' => 'String comparison / dictionary', 'type' => 'framework'],1941 'phpOMS\tests\Utils\StringCompareTest:testDictionaryMatch' => ['description' => 'A string can be matched with a dictionary entry', 'type' => 'framework'],1942 'phpOMS\tests\Utils\StringCompareTest:testInvalidDictionary' => ['description' => 'A string doesn\'t match a dictionary entry if it is very different', 'type' => 'framework'],1943 'phpOMS\tests\Utils\StringCompareTest:testDictionaryAdd' => ['description' => 'A new dictionary entry can be created and returned', 'type' => 'framework'],1944 'phpOMS\tests\Utils\StringUtilsTest' => ['description' => 'String utilities', 'type' => 'framework'],1945 'phpOMS\tests\Utils\StringUtilsTest:testEntropy' => ['description' => 'The entropy of a string can be calculated', 'type' => 'framework'],1946 'phpOMS\tests\Utils\StringUtilsTest:testStarts' => ['description' => 'A string can be checked if it starts with a defined string', 'type' => 'framework'],1947 'phpOMS\tests\Utils\StringUtilsTest:testEnds' => ['description' => 'A string can be checked if it ends with a defined string', 'type' => 'framework'],1948 'phpOMS\tests\Utils\StringUtilsTest:testTransformUpperCase' => ['description' => 'The first character of a multi-byte string can be turned into upper case', 'type' => 'framework'],1949 'phpOMS\tests\Utils\StringUtilsTest:testTransformLowerCase' => ['description' => 'The first character of a multi-byte string can be turned into lower case', 'type' => 'framework'],1950 'phpOMS\tests\Utils\StringUtilsTest:testTrim' => ['description' => 'A multi-byte string can be trimmed', 'type' => 'framework'],1951 'phpOMS\tests\Utils\StringUtilsTest:testRTrim' => ['description' => 'A multi-byte string can be right-trimmed', 'type' => 'framework'],1952 'phpOMS\tests\Utils\StringUtilsTest:testLTrim' => ['description' => 'A multi-byte string can be left-trimmed', 'type' => 'framework'],1953 'phpOMS\tests\Utils\StringUtilsTest:testContains' => ['description' => 'A string can be checked if it contains at least one defined string element', 'type' => 'framework'],1954 'phpOMS\tests\Utils\StringUtilsTest:testCountBeginning' => ['description' => 'The amount of a defined characters in the beginning of a string can be counted', 'type' => 'framework'],1955 'phpOMS\tests\Utils\StringUtilsTest:testIntHash' => ['description' => 'A string creates a integer hash', 'type' => 'framework'],1956 'phpOMS\tests\Utils\StringUtilsTest:testSameHash' => ['description' => 'The same string creates the same hash', 'type' => 'framework'],1957 'phpOMS\tests\Utils\StringUtilsTest:testDifferentHash' => ['description' => 'Different strings create different hashes', 'type' => 'framework'],1958 'phpOMS\tests\Utils\StringUtilsTest:testStringify' => ['description' => 'Various data types can be stringified', 'type' => 'framework'],1959 'phpOMS\tests\Utils\StringUtilsTest:testInvalidStringify' => ['description' => 'Stringify/rendering a unknown data type returns null', 'type' => 'framework'],1960 'phpOMS\tests\Utils\StringUtilsTest:testStringDiffHtml' => ['description' => 'The difference between two strings can be evaluated', 'type' => 'framework'],1961 'phpOMS\tests\Utils\MbStringUtilsTest' => ['description' => 'Multi-Byte string utilities', 'type' => 'framework'],1962 'phpOMS\tests\Utils\MbStringUtilsTest:testEntropy' => ['description' => 'The entropy of a string can be calculated', 'type' => 'framework'],1963 'phpOMS\tests\Utils\MbStringUtilsTest:testStartsMb' => ['description' => 'A multi-byte string can be checked if it starts with a defined string', 'type' => 'framework'],1964 'phpOMS\tests\Utils\MbStringUtilsTest:testEndsMb' => ['description' => 'A multi-byte string can be checked if it ends with a defined string', 'type' => 'framework'],1965 'phpOMS\tests\Utils\MbStringUtilsTest:testHasMultiBytes' => ['description' => 'A string can be checked for multi-byte characters', 'type' => 'framework'],1966 'phpOMS\tests\Utils\MbStringUtilsTest:testTransformUpperCase' => ['description' => 'The first character of a multi-byte string can be turned into upper case', 'type' => 'framework'],1967 'phpOMS\tests\Utils\MbStringUtilsTest:testTransformLowerCase' => ['description' => 'The first character of a multi-byte string can be turned into lower case', 'type' => 'framework'],1968 'phpOMS\tests\Utils\MbStringUtilsTest:testTrim' => ['description' => 'A multi-byte string can be trimmed', 'type' => 'framework'],1969 'phpOMS\tests\Utils\MbStringUtilsTest:testRTrim' => ['description' => 'A multi-byte string can be right-trimmed', 'type' => 'framework'],1970 'phpOMS\tests\Utils\MbStringUtilsTest:testLTrim' => ['description' => 'A multi-byte string can be left-trimmed', 'type' => 'framework'],1971 'phpOMS\tests\Utils\MbStringUtilsTest:testContainsMb' => ['description' => 'A multi-byte string can be checked if it contains at least one defined string element', 'type' => 'framework'],1972 'phpOMS\tests\Utils\MbStringUtilsTest:testCountMb' => ['description' => 'The characters of a multi-byte string can be counted', 'type' => 'framework'],1973 'phpOMS\tests\Utils\MbStringUtilsTest:testUtf8CharBoundary' => ['description' => 'The previous boundary of a utf-8 encoded quoted printable is identified correctly', 'type' => 'framework'],1974 'phpOMS\tests\Utils\TestUtilsTest' => ['description' => 'Test utilities', 'type' => 'framework'],1975 'phpOMS\tests\Utils\TestUtilsTest:testGet' => ['description' => 'A member value can be returned', 'type' => 'framework'],1976 'phpOMS\tests\Utils\TestUtilsTest:testInvalidGet' => ['description' => 'Invalid member variable returns null', 'type' => 'framework'],1977 'phpOMS\tests\Utils\TestUtilsTest:testInputOutput' => ['description' => 'A member value can be set and returned', 'type' => 'framework'],1978 'phpOMS\tests\Utils\TestUtilsTest:testInputInputOutput' => ['description' => 'A none-existing member variable cannot be set', 'type' => 'framework'],1979 'phpOMS\tests\Validation\Base\DateTimeTest' => ['description' => 'Datetime validator', 'type' => 'framework'],1980 'phpOMS\tests\Validation\Base\DateTimeTest:testDateTime' => ['description' => 'A date time string can be validated', 'type' => 'framework'],1981 'phpOMS\tests\Validation\Base\JsonTest' => ['description' => 'Json validator', 'type' => 'framework'],1982 'phpOMS\tests\Validation\Base\JsonTest:testJson' => ['description' => 'A json string can be validated', 'type' => 'framework'],1983 'phpOMS\tests\Validation\Base\JsonTest:testJsonTemplate' => ['description' => 'A json string can be validated against a template definition', 'type' => 'framework'],1984 'phpOMS\tests\Validation\Base\JsonTest:testJsonTemplateAdditional' => ['description' => 'A json string can be validated against a template definition with additional data', 'type' => 'framework'],1985 'phpOMS\tests\Validation\Base\JsonTest:testJsonTemplateInvalidAdditional' => ['description' => 'A json string cannot be validated against a template definition with additional data if an exact match is enforced', 'type' => 'framework'],1986 'phpOMS\tests\Validation\Base\JsonTest:testJsonTemplateInvalidMissing' => ['description' => 'A json string cannot be validated against a template definition with missing data if an exact match is enforced', 'type' => 'framework'],1987 'phpOMS\tests\Validation\Base\JsonTest:testInvalidJsonTemplate' => ['description' => 'A json string cannot be validated against a template definition if it doesn\'t match the template', 'type' => 'framework'],1988 'phpOMS\tests\Validation\Finance\BICTest' => ['description' => 'BIC validator', 'type' => 'framework'],1989 'phpOMS\tests\Validation\Finance\BICTest:testBic' => ['description' => 'A BIC can be validated', 'type' => 'framework'],1990 'phpOMS\tests\Validation\Finance\CreditCardTest' => ['description' => 'Credit card validator', 'type' => 'framework'],1991 'phpOMS\tests\Validation\Finance\CreditCardTest:testCreditCard' => ['description' => 'A credit card can be validated', 'type' => 'framework'],1992 'phpOMS\tests\Validation\Finance\CreditCardTest:testInvalidCreditCardType' => ['description' => 'A invalid type cannot be validated', 'type' => 'framework'],1993 'phpOMS\tests\Validation\Finance\IbanTest' => ['description' => 'Iban validator', 'type' => 'framework'],1994 'phpOMS\tests\Validation\Finance\IbanTest:testValid' => ['description' => 'A iban can be validated', 'type' => 'framework'],1995 'phpOMS\tests\Validation\Network\EmailTest' => ['description' => 'Email validator', 'type' => 'framework'],1996 'phpOMS\tests\Validation\Network\EmailTest:testValidation' => ['description' => 'A email can be validated', 'type' => 'framework'],1997 'phpOMS\tests\Validation\Network\HostnameTest' => ['description' => 'Hostname validator', 'type' => 'framework'],1998 'phpOMS\tests\Validation\Network\HostnameTest:testHostname' => ['description' => 'A hostname can be validated', 'type' => 'framework'],1999 'phpOMS\tests\Validation\Network\IpTest' => ['description' => 'IP validator', 'type' => 'framework'],2000 'phpOMS\tests\Validation\Network\IpTest:testValid' => ['description' => 'A ip can be validated', 'type' => 'framework'],2001 'phpOMS\tests\Validation\Network\IpTest:testValidIp4' => ['description' => 'A ip4 can be validated', 'type' => 'framework'],2002 'phpOMS\tests\Validation\Network\IpTest:testValidIp6' => ['description' => 'A ip6 can be validated', 'type' => 'framework'],2003 'phpOMS\tests\Validation\ValidatorTest' => ['description' => 'General validator', 'type' => 'framework'],2004 'phpOMS\tests\Validation\ValidatorTest:testValidationContains' => ['description' => 'A string can be checked if it contains a substring', 'type' => 'framework'],2005 'phpOMS\tests\Validation\ValidatorTest:testValidationLength' => ['description' => 'A string can be checked if it has a certain length', 'type' => 'framework'],2006 'phpOMS\tests\Validation\ValidatorTest:testValidationLimit' => ['description' => 'A value can be checked if it is in range', 'type' => 'framework'],2007 'phpOMS\tests\Validation\ValidatorTest:testValidationType' => ['description' => 'A value can be checked to be of a defined type', 'type' => 'framework'],2008 'phpOMS\tests\Validation\ValidatorTest:testValidationError' => ['description' => 'The error message and error code have the expected default values', 'type' => 'framework'],2009 'phpOMS\tests\Validation\ValidatorTest:testValidators' => ['description' => 'Custom validators can be specified in order to validate a value', 'type' => 'framework'],2010 'phpOMS\tests\Validation\ValidatorTest:testMatching' => ['description' => 'A value can be checked to match a regular expression', 'type' => 'framework'],2011 'phpOMS\tests\Version\VersionTest' => ['description' => 'Version handler', 'type' => 'framework'],2012 'phpOMS\tests\Version\VersionTest:testVersionCompare' => ['description' => 'Versions can be compared with each other', 'type' => 'framework'],2013 'phpOMS\tests\Views\ViewTest' => ['description' => 'View for response rendering', 'type' => 'framework'],2014 'phpOMS\tests\Views\ViewTest:testDefault' => ['description' => 'The view has the expected default values after initialization', 'type' => 'framework'],2015 'phpOMS\tests\Views\ViewTest:testHasData' => ['description' => 'The view data can be checked for existence', 'type' => 'framework'],2016 'phpOMS\tests\Views\ViewTest:testGetText' => ['description' => 'The view can output text from the localization manager', 'type' => 'framework'],2017 'phpOMS\tests\Views\ViewTest:testGetHtml' => ['description' => 'The view can output html escaped text from the localization manager', 'type' => 'framework'],2018 'phpOMS\tests\Views\ViewTest:testGetNumeric' => ['description' => 'The numeric value can be printed based on the localization', 'type' => 'framework'],2019 'phpOMS\tests\Views\ViewTest:testGetPercentage' => ['description' => 'The percentage value can be printed based on the localization', 'type' => 'framework'],2020 'phpOMS\tests\Views\ViewTest:testGetCurrency' => ['description' => 'The currency value can be printed based on the localization', 'type' => 'framework'],2021 'phpOMS\tests\Views\ViewTest:testGetDateTime' => ['description' => 'The datetime value can be printed based on the localization', 'type' => 'framework'],2022 'phpOMS\tests\Views\ViewTest:testDataInputOutput' => ['description' => 'View data can be set and returned', 'type' => 'framework'],2023 'phpOMS\tests\Views\ViewTest:testDataAdd' => ['description' => 'View data can be added and returned', 'type' => 'framework'],2024 'phpOMS\tests\Views\ViewTest:testInvalidDataOverwrite' => ['description' => 'View data cannot be added if it already exists', 'type' => 'framework'],2025 'phpOMS\tests\Views\ViewTest:testRemove' => ['description' => 'View data can be removed', 'type' => 'framework'],2026 'phpOMS\tests\Views\ViewTest:testInvalidDataRemove' => ['description' => 'None-existing view data cannot be removed', 'type' => 'framework'],2027 'phpOMS\tests\Views\ViewTest:testGetRequest' => ['description' => 'The request can be returned', 'type' => 'framework'],2028 'phpOMS\tests\Views\ViewTest:testGetResponse' => ['description' => 'The response can be returned', 'type' => 'framework'],2029 'phpOMS\tests\Views\ViewTest:testPrintHtml' => ['description' => 'Text can be html escaped', 'type' => 'framework'],2030 'phpOMS\tests\Views\ViewTest:testViewInputOutput' => ['description' => 'Views can be added and returned from a view', 'type' => 'framework'],2031 'phpOMS\tests\Views\ViewTest:testInvalidViewGet' => ['description' => 'None-existing views cannot be returned', 'type' => 'framework'],2032 'phpOMS\tests\Views\ViewTest:testViewRemove' => ['description' => 'Views can be removed', 'type' => 'framework'],2033 'phpOMS\tests\Views\ViewTest:testInvalidViewRemove' => ['description' => 'None-existing views cannot be removed', 'type' => 'framework'],2034 'phpOMS\tests\Views\ViewTest:testOverwritingView' => ['description' => 'A view can be forcefully overwritten', 'type' => 'framework'],2035 'phpOMS\tests\Views\ViewTest:testInvalidOverwritingView' => ['description' => 'By default a view is not overwritten', 'type' => 'framework'],2036 'phpOMS\tests\Views\ViewTest:testRender' => ['description' => 'A view template can be rendered', 'type' => 'framework'],2037 'phpOMS\tests\Views\ViewTest:testSerialize' => ['description' => 'A view template can be serialized', 'type' => 'framework'],2038 'phpOMS\tests\Views\ViewTest:testArray' => ['description' => 'A view can be turned into an array containing the rendered templates', 'type' => 'framework'],2039 'phpOMS\tests\Views\ViewTest:testRenderException' => ['description' => 'Rendering a invalid template throws a PathException', 'type' => 'framework'],2040 'phpOMS\tests\Views\ViewTest:testSerializeException' => ['description' => 'Serializing a invalid template throws a PathException', 'type' => 'framework'],2041 'phpOMS\tests\Views\ViewTest:testTextWithoutModuleAndTemplate' => ['description' => 'Getting the text without defining a module throws a InvalidModuleException exception', 'type' => 'framework'],2042 'phpOMS\tests\Views\ViewTest:testTextFromInvalidTemplatePath' => ['description' => 'Getting the text with an invalid template path throws a InvalidModuleException exception', 'type' => 'framework'],2043 'phpOMS\tests\Views\ViewTest:testTextInvalidTemplate' => ['description' => 'Getting the text without defining a template throws a InvalidThemeException exception', 'type' => 'framework'],2044 'phpOMS\tests\Views\PaginationViewTest' => ['description' => 'View for pagination', 'type' => 'framework'],2045 'phpOMS\tests\Views\PaginationViewTest:testDefault' => ['description' => 'The pagination view has the expected default values after initialization', 'type' => 'framework'],2046 'phpOMS\tests\Views\PaginationViewTest:testMaxPagesInputOutput' => ['description' => 'The max pages can be set and returned', 'type' => 'framework'],2047 'phpOMS\tests\Views\PaginationViewTest:testPagesInputOutput' => ['description' => 'The pages can be set and returned', 'type' => 'framework'],2048 'phpOMS\tests\Views\PaginationViewTest:testPageInputOutput' => ['description' => 'The page can be set and returned', 'type' => 'framework'],2049 'phpOMS\tests\Views\PaginationViewTest:testResultsInputOutput' => ['description' => 'The results can be set and returned', 'type' => 'framework'],2050 'phpOMS\tests\Application\ApplicationAbstractTest' => ['description' => 'Application abstraction', 'type' => 'framework'],2051 'phpOMS\tests\Application\ApplicationAbstractTest:testInputOutput' => ['description' => 'Application values can be set and returned', 'type' => 'framework'],2052 'phpOMS\tests\Application\ApplicationAbstractTest:testInvalidInputOutput' => ['description' => 'Application values cannot be overwritten', 'type' => 'framework'],2053 'phpOMS\tests\AutoloaderTest' => ['description' => 'Class autoloader', 'type' => 'framework'],2054 'phpOMS\tests\AutoloaderTest:testAutoloader' => ['description' => 'Classes can be checked for existence', 'type' => 'framework'],2055 // Modules are below2056 'Modules\Admin\tests\Admin\AdminTest' => ['description' => 'Admin module - general module information', 'type' => 'module'],2057 'Modules\Admin\tests\Admin\AdminTest:testModuleIntegration' => ['description' => 'The module can be installed, deactivated and activated', 'type' => 'module'],2058 'Modules\Admin\tests\Admin\AdminTest:testValidMapper' => ['description' => 'The mappers are valid', 'type' => 'module'],2059 'Modules\Admin\tests\Admin\AdminTest:testMapperAgainstModel' => ['description' => 'The mappers match the models', 'type' => 'module'],2060 'Modules\Admin\tests\Admin\AdminTest:testValidDbSchema' => ['description' => 'The database schema definition is valid', 'type' => 'module'],2061 'Modules\Admin\tests\Admin\AdminTest:testDbSchemaAgainstDb' => ['description' => 'The database schema is correctly setup in the database', 'type' => 'module'],2062 'Modules\Admin\tests\Admin\AdminTest:testMapperAgainstDbSchema' => ['description' => 'The mapper matches the database setup', 'type' => 'module'],2063 'Modules\Admin\tests\Admin\AdminTest:testJson' => ['description' => 'The module info file has the correct structure', 'type' => 'module'],2064 'Modules\Admin\tests\Admin\AdminTest:testDependency' => ['description' => 'The dependencies got installed', 'type' => 'module'],2065 'Modules\Admin\tests\Admin\AdminTest:testRoutes' => ['description' => 'The routes got installed and the endpoints are defined', 'type' => 'module'],2066 'Modules\Admin\tests\Admin\AdminTest:testHooks' => ['description' => 'The hooks got installed and the endpoints are defined', 'type' => 'module'],2067 'Modules\Admin\tests\Admin\AdminTest:testNavigation' => ['description' => 'The navigation got installed', 'type' => 'module'],2068 // CONTROLLER:2069 'Modules\Admin\tests\Controller\ApiControllerTest' => ['description' => 'Admin api controller', 'type' => 'module'],2070 // settings2071 'Modules\Admin\tests\Controller\ApiControllerTest:testApiSettingsGet' => ['description' => 'Application settings can be read from the database', 'type' => 'module'],2072 'Modules\Admin\tests\Controller\ApiControllerTest:testApiSettingsSet' => ['description' => 'Application settings can be set in the database', 'type' => 'module'],2073 // groups2074 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupGet' => ['description' => 'A user group can be returned', 'type' => 'module'],2075 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupSet' => ['description' => 'A user group can be updated', 'type' => 'module'],2076 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupFind' => ['description' => 'A user group can be found by name', 'type' => 'module'],2077 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupCreateDelete' => ['description' => 'A user group can be created and deleted', 'type' => 'module'],2078 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupCreateInvalid' => ['description' => 'A invalid user group cannot be created', 'type' => 'module'],2079 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddAccountToGroup' => ['description' => 'A user can be added to a user group', 'type' => 'module'],2080 // group_permission2081 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddGroupPermission' => ['description' => 'A permission can be added to a user group', 'type' => 'module'],2082 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupPermissionGet' => ['description' => 'A group permission can be returned', 'type' => 'module'],2083 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupPermissionCreateDelete' => ['description' => 'A user group permission can be created and deleted', 'type' => 'module'],2084 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddGroupPermissionInvalidData' => ['description' => 'A permission with missing data cannot be added to a user group', 'type' => 'module'],2085 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddGroupPermissionInvalidType' => ['description' => 'A invalid permission type cannot be added to a user group', 'type' => 'module'],2086 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupPermissionUpdate' => ['description' => 'A user group permission can be updated', 'type' => 'module'],2087 // users2088 'Modules\Admin\tests\Controller\ApiControllerTest:testApiGroupGet' => ['description' => 'A user can be returned', 'type' => 'module'],2089 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountUpdate' => ['description' => 'A user can be updated', 'type' => 'module'],2090 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountFind' => ['description' => 'A user can be found by name', 'type' => 'module'],2091 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountAndProfileCreate' => ['description' => 'A user and profile for the user can be created', 'type' => 'module'],2092 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountDelete' => ['description' => 'A user can be deleted', 'type' => 'module'],2093 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountCreateInvalid' => ['description' => 'A invalid user cannot be created', 'type' => 'module'],2094 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddGroupToAccount' => ['description' => 'A user group can be added to a user', 'type' => 'module'],2095 // user_permission2096 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddAccountPermission' => ['description' => 'A permission can be added to a user', 'type' => 'module'],2097 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountPermissionGet' => ['description' => 'A user permission can be returned', 'type' => 'module'],2098 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountPermissionCreateDelete' => ['description' => 'A user permission can be created and deleted', 'type' => 'module'],2099 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddAccountPermissionInvalidData' => ['description' => 'A permission with missing data cannot be added to a user', 'type' => 'module'],2100 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAddAccountPermissionInvalidType' => ['description' => 'A invalid permission type cannot be added to a user', 'type' => 'module'],2101 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountPermissionUpdate' => ['description' => 'A user permission can be updated', 'type' => 'module'],2102 // groups & users2103 'Modules\Admin\tests\Controller\ApiControllerTest:testApiAccountGroupFind' => ['description' => 'A user and user group can be found by name', 'type' => 'module'],2104 // module2105 'Modules\Admin\tests\Controller\ApiControllerTest:testApiModuleStatusUpdate' => ['description' => 'The status of a module can be updated', 'type' => 'module'],2106 'Modules\Admin\tests\Controller\ApiControllerTest:testApiModuleStatusUpdateEmptyModule' => ['description' => 'A missing module cannot be updated', 'type' => 'module'],2107 'Modules\Admin\tests\Controller\ApiControllerTest:testApiModuleStatusUpdateInvalidStatus' => ['description' => 'A invalid module status cannot update a module', 'type' => 'module'],2108 'Modules\Admin\tests\Controller\ApiControllerTest:testApiModuleStatusUpdateInvalidModule' => ['description' => 'A invalid module cannot be updated', 'type' => 'module'],2109 'Modules\Admin\tests\Controller\ApiControllerTest:testApiReInit' => ['description' => 'A module can be re-initialized', 'type' => 'module'],2110 // models2111 'Modules\Admin\tests\Models\AccountMapperTest' => ['description' => 'Account database mapper', 'type' => 'module'],2112 'Modules\Admin\tests\Models\AccountMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2113 'Modules\Admin\tests\Models\AccountMapperTest:testEmptyPasswordLogin' => ['description' => 'A empty user password results in a failed login', 'type' => 'module'],2114 'Modules\Admin\tests\Models\AccountMapperTest:testInvalidPasswordLogin' => ['description' => 'A invalid user password results in a failed login', 'type' => 'module'],2115 'Modules\Admin\tests\Models\AccountMapperTest:testInvalidUsernameLogin' => ['description' => 'A valid user name and password results in a successful login', 'type' => 'module'],2116 'Modules\Admin\tests\Models\AccountMapperTest:testValidLogin' => ['description' => 'A invalid user name results in a failed login', 'type' => 'module'],2117 'Modules\Admin\tests\Models\AccountPermissionTest' => ['description' => 'Account permission', 'type' => 'module'],2118 'Modules\Admin\tests\Models\AccountPermissionTest:testDefault' => ['description' => 'The account permission has the expected default values after initialization', 'type' => 'module'],2119 'Modules\Admin\tests\Models\AccountTest' => ['description' => 'Account model', 'type' => 'module'],2120 'Modules\Admin\tests\Models\AccountTest:testDefault' => ['description' => 'The account has the expected default values after initialization', 'type' => 'module'],2121 'Modules\Admin\tests\Models\AccountTest:testLoginTriesInputOutput' => ['description' => 'The login tries can be set and returned', 'type' => 'module'],2122 'Modules\Admin\tests\Models\GroupMapperTest' => ['description' => 'Group mapper', 'type' => 'module'],2123 'Modules\Admin\tests\Models\GroupMapperTest:testGroupPermissionForModule' => ['description' => 'All groups which have permissions for a module can be returned', 'type' => 'module'],2124 'Modules\Admin\tests\Models\GroupPermissionTest' => ['description' => 'Group permission', 'type' => 'module'],2125 'Modules\Admin\tests\Models\GroupPermissionTest:testDefault' => ['description' => 'The group permission has the expected default values after initialization', 'type' => 'module'],2126 'Modules\Admin\tests\Models\GroupTest' => ['description' => 'Group model', 'type' => 'module'],2127 'Modules\Admin\tests\Models\GroupTest:testDefault' => ['description' => 'The group has the expected default values after initialization', 'type' => 'module'],2128 'Modules\Admin\tests\Models\GroupTest:testDescriptionInputOutput' => ['description' => 'The description can be set and returned', 'type' => 'module'],2129 'Modules\Admin\tests\Models\GroupTest:testCreatorInputOutput' => ['description' => 'The creator can be set and returned', 'type' => 'module'],2130 'Modules\Admin\tests\Models\LocalizationMapperTest' => ['description' => 'Localization database mapper', 'type' => 'module'],2131 'Modules\Admin\tests\Models\LocalizationMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2132 'Modules\Admin\tests\Models\ModuleTest' => ['description' => 'Module container', 'type' => 'module'],2133 'Modules\Admin\tests\Models\ModuleTest:testDefault' => ['description' => 'The module has the expected default values after initialization', 'type' => 'module'],2134 'Modules\Admin\tests\Models\ModuleTest:testNameInputOutput' => ['description' => 'The name can be set and returned', 'type' => 'module'],2135 'Modules\Admin\tests\Models\ModuleTest:testDescriptionInputOutput' => ['description' => 'The description can be set and returned', 'type' => 'module'],2136 'Modules\Admin\tests\Models\ModuleTest:testStatusInputOutput' => ['description' => 'The status can be set and returned', 'type' => 'module'],2137 'Modules\Admin\tests\Models\ModuleTest:testSerializations' => ['description' => 'The module can be serialized', 'type' => 'module'],2138 'Modules\Admin\tests\Models\ModuleTest:testInvalidStatus' => ['description' => 'A invalid status throws a InvalidEnumValue exception', 'type' => 'module'],2139 'Modules\tests\Auditor\Controller\ApiControllerTest' => ['description' => 'Auditor api controller', 'type' => 'module'],2140 'Modules\tests\Auditor\Controller\ApiControllerTest:testLogCreate' => ['description' => 'Audit logs for create statements can be created', 'type' => 'module'],2141 'Modules\tests\Auditor\Controller\ApiControllerTest:testLogUpdate' => ['description' => 'Audit logs for update statements can be created', 'type' => 'module'],2142 'Modules\tests\Auditor\Controller\ApiControllerTest:testLogDelete' => ['description' => 'Audit logs for delete statements can be created', 'type' => 'module'],2143 // models2144 'Modules\tests\Auditor\Models\AuditTest' => ['description' => 'Audit model', 'type' => 'module'],2145 'Modules\tests\Auditor\Models\AuditTest:testDefault' => ['description' => 'The model has the expected default values after initialization', 'type' => 'module'],2146 'Modules\tests\Auditor\Models\AuditTest:testConstructorInputOutput' => ['description' => 'The model can be initialized correctly', 'type' => 'module'],2147 'Modules\News\tests\Controller\ApiControllerTest' => ['description' => 'News api controller', 'type' => 'module'],2148 'Modules\News\tests\Controller\ApiControllerTest:testApiNewsCreate' => ['description' => 'A news article can be created', 'type' => 'module'],2149 'Modules\News\tests\Controller\ApiControllerTest:testApiNewsGet' => ['description' => 'A news article can be returned', 'type' => 'module'],2150 'Modules\News\tests\Controller\ApiControllerTest:testApiNewsUpdate' => ['description' => 'A news article can be updated', 'type' => 'module'],2151 'Modules\News\tests\Controller\ApiControllerTest:testApiNewsDelete' => ['description' => 'A news article can be deleted', 'type' => 'module'],2152 // models2153 'Modules\News\tests\Models\NewsArticleTest' => ['description' => 'News article', 'type' => 'module'],2154 'Modules\News\tests\Models\NewsArticleTest:testDefault' => ['description' => 'The model has the expected default values after initialization', 'type' => 'module'],2155 'Modules\News\tests\Models\NewsArticleTest:testCreatorInputOutput' => ['description' => 'The cretor can be correctly set and returned', 'type' => 'module'],2156 'Modules\News\tests\Models\NewsArticleTest:testTitleInputOutput' => ['description' => 'The title can be correctly set and returned', 'type' => 'module'],2157 'Modules\News\tests\Models\NewsArticleTest:testContentInputOutput' => ['description' => 'The content can be correctly set and returned', 'type' => 'module'],2158 'Modules\News\tests\Models\NewsArticleTest:testPlainInputOutput' => ['description' => 'The plain content can be correctly set and returned', 'type' => 'module'],2159 'Modules\News\tests\Models\NewsArticleTest:testPublishInputOutput' => ['description' => 'The publish date can be correctly set and returned', 'type' => 'module'],2160 'Modules\News\tests\Models\NewsArticleTest:testFeaturedInputOutput' => ['description' => 'The featured flag can be correctly set and returned', 'type' => 'module'],2161 'Modules\News\tests\Models\NewsArticleTest:testLanguageInputOutput' => ['description' => 'The language can be correctly set and returned', 'type' => 'module'],2162 'Modules\News\tests\Models\NewsArticleTest:testStatusInputOutput' => ['description' => 'The status can be correctly set and returned', 'type' => 'module'],2163 'Modules\News\tests\Models\NewsArticleTest:testTypeInputOutput' => ['description' => 'The type can be correctly set and returned', 'type' => 'module'],2164 'Modules\News\tests\Models\NewsArticleTest:testSerialization' => ['description' => 'The model can be correctly serialized', 'type' => 'module'],2165 'Modules\News\tests\Models\NewsArticleTest:testInvalidStatus' => ['description' => 'A invalid status throws a InvalidEnumValue exception', 'type' => 'module'],2166 'Modules\News\tests\Models\NewsArticleTest:testInvalidType' => ['description' => 'A invalid type throws a InvalidEnumValue exception', 'type' => 'module'],2167 'Modules\News\tests\Models\NewsArticleTest:testInvalidLanguage' => ['description' => 'A invalid language throws a InvalidEnumValue exception', 'type' => 'module'],2168 'Modules\News\tests\Models\NewsArticleMapperTest' => ['description' => 'News article mapper', 'type' => 'module'],2169 'Modules\News\tests\Models\NewsArticleMapperTest:testDefault' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2170 // models2171 'Modules\tests\Helper\Models\ReportTest' => ['description' => 'Report model', 'type' => 'module'],2172 'Modules\tests\Helper\Models\ReportTest:testDefault' => ['description' => 'The model has the expected default values after initialization', 'type' => 'module'],2173 'Modules\tests\Helper\Models\ReportTest:testCreatedByInputOutput' => ['description' => 'The creator can be set and returned correctly', 'type' => 'module'],2174 'Modules\tests\Helper\Models\ReportTest:testTitleInputOutput' => ['description' => 'The title can be set and returned correctly', 'type' => 'module'],2175 'Modules\tests\Helper\Models\ReportTest:testStatusInputOutput' => ['description' => 'The status can be set and returned correctly', 'type' => 'module'],2176 'Modules\tests\Helper\Models\ReportTest:testDescriptionInputOutput' => ['description' => 'The description can be set and returned correctly', 'type' => 'module'],2177 'Modules\tests\Helper\Models\ReportTest:testDescriptionRawInputOutput' => ['description' => 'The raw description can be set and returned correctly', 'type' => 'module'],2178 'Modules\tests\Helper\Models\ReportTest:testTemplateInputOutput' => ['description' => 'The template can be set and returned correctly', 'type' => 'module'],2179 'Modules\tests\Helper\Models\ReportTest:testSourceInputOutput' => ['description' => 'The source can be set and returned correctly', 'type' => 'module'],2180 'Modules\tests\Helper\Models\ReportTest:testToArray' => ['description' => 'Report data can be turned into an array', 'type' => 'module'],2181 'Modules\tests\Helper\Models\ReportTest:testJsonSerialize' => ['description' => 'Report data can be json serialized', 'type' => 'module'],2182 'Modules\tests\Helper\Models\ReportMapperTest' => ['description' => 'Report database mapper', 'type' => 'module'],2183 'Modules\tests\Helper\Models\ReportMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2184 'Modules\tests\Helper\Models\TemplateTest' => ['description' => 'Template model', 'type' => 'module'],2185 'Modules\tests\Helper\Models\TemplateTest:testDefault' => ['description' => 'The model has the expected default values after initialization', 'type' => 'module'],2186 'Modules\tests\Helper\Models\TemplateTest:testUnitInputOutput' => ['description' => 'The unit can be set and returned correctly', 'type' => 'module'],2187 'Modules\tests\Helper\Models\TemplateTest:testCreatedByInputOutput' => ['description' => 'The creator can be set and returned correctly', 'type' => 'module'],2188 'Modules\tests\Helper\Models\TemplateTest:testNameInputOutput' => ['description' => 'The title can be set and returned correctly', 'type' => 'module'],2189 'Modules\tests\Helper\Models\TemplateTest:testStatusInputOutput' => ['description' => 'The status can be set and returned correctly', 'type' => 'module'],2190 'Modules\tests\Helper\Models\TemplateTest:testStandalonInputOutput' => ['description' => 'The template can be set as standalone and returned correctly', 'type' => 'module'],2191 'Modules\tests\Helper\Models\TemplateTest:testDescriptionInputOutput' => ['description' => 'The description can be set and returned correctly', 'type' => 'module'],2192 'Modules\tests\Helper\Models\TemplateTest:testDescriptionRawInputOutput' => ['description' => 'The raw description can be set and returned correctly', 'type' => 'module'],2193 'Modules\tests\Helper\Models\TemplateTest:testExpectedInputOutput' => ['description' => 'The expected report files can be set and returned correctly', 'type' => 'module'],2194 'Modules\tests\Helper\Models\TemplateTest:testSourceInputOutput' => ['description' => 'The source can be set and returned correctly', 'type' => 'module'],2195 'Modules\tests\Helper\Models\TemplateTest:testDatatypeInputOutput' => ['description' => 'The data storage type can be set and returned correctly', 'type' => 'module'],2196 'Modules\tests\Helper\Models\TemplateTest:testToArray' => ['description' => 'Template data can be turned into an array', 'type' => 'module'],2197 'Modules\tests\Helper\Models\TemplateTest:testJsonSerialize' => ['description' => 'Template data can be json serialized', 'type' => 'module'],2198 'Modules\tests\Helper\Models\TemplateMapperTest' => ['description' => 'Template database mapper', 'type' => 'module'],2199 'Modules\tests\Helper\Models\TemplateMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2200 'Modules\tests\Helper\Models\TemplateMapperTest:testNewest' => ['description' => 'The newest model can be read from the database', 'type' => 'module'],2201 // models2202 'Modules\tests\Knowledgebase\Models\WikiAppTest' => ['description' => 'Wiki application', 'type' => 'module'],2203 'Modules\tests\Knowledgebase\Models\WikiAppTest:testDefault' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2204 'Modules\tests\Knowledgebase\Models\WikiAppTest:testNameInputOutput' => ['description' => 'The name can be correctly set and returned', 'type' => 'module'],2205 'Modules\tests\Knowledgebase\Models\WikiAppMapperTest' => ['description' => 'Wiki application mapper', 'type' => 'module'],2206 'Modules\tests\Knowledgebase\Models\WikiAppMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2207 'Modules\tests\Knowledgebase\Models\WikiCategoryTest' => ['description' => 'Wiki category', 'type' => 'module'],2208 'Modules\tests\Knowledgebase\Models\WikiCategoryTest:testDefault' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2209 'Modules\tests\Knowledgebase\Models\WikiCategoryTest:testAppInputOutput' => ['description' => 'The application can be correctly set and returned', 'type' => 'module'],2210 'Modules\tests\Knowledgebase\Models\WikiCategoryTest:testNameInputOutput' => ['description' => 'The name can be correctly set and returned', 'type' => 'module'],2211 'Modules\tests\Knowledgebase\Models\WikiCategoryTest:testPathInputOutput' => ['description' => 'The path can be correctly set and returned', 'type' => 'module'],2212 'Modules\tests\Knowledgebase\Models\WikiCategoryTest:testParentInputOutput' => ['description' => 'The parent can be correctly set and returned', 'type' => 'module'],2213 'Modules\tests\Knowledgebase\Models\WikiCategoryMapperTest' => ['description' => 'Wiki category mapper', 'type' => 'module'],2214 'Modules\tests\Knowledgebase\Models\WikiCategoryMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2215 'Modules\tests\Knowledgebase\Models\WikiCategoryMapperTest:testChildCR' => ['description' => 'The model can be created and read from the database with a parent category', 'type' => 'module'],2216 'Modules\tests\Knowledgebase\Models\WikiDocTest' => ['description' => 'Wiki document', 'type' => 'module'],2217 'Modules\tests\Knowledgebase\Models\WikiDocTest:testDefault' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2218 'Modules\tests\Knowledgebase\Models\WikiDocTest:testAppInputOutput' => ['description' => 'The application can be correctly set and returned', 'type' => 'module'],2219 'Modules\tests\Knowledgebase\Models\WikiDocTest:testNameInputOutput' => ['description' => 'The name can be correctly set and returned', 'type' => 'module'],2220 'Modules\tests\Knowledgebase\Models\WikiDocTest:testDocInputOutput' => ['description' => 'The content can be correctly set and returned', 'type' => 'module'],2221 'Modules\tests\Knowledgebase\Models\WikiDocTest:testDocRawInputOutput' => ['description' => 'The raw content can be correctly set and returned', 'type' => 'module'],2222 'Modules\tests\Knowledgebase\Models\WikiDocTest:testStatusInputOutput' => ['description' => 'The status can be correctly set and returned', 'type' => 'module'],2223 'Modules\tests\Knowledgebase\Models\WikiDocTest:testCategoryInputOutput' => ['description' => 'The category can be correctly set and returned', 'type' => 'module'],2224 'Modules\tests\Knowledgebase\Models\WikiDocTest:testLanguageInputOutput' => ['description' => 'The language can be correctly set and returned', 'type' => 'module'],2225 'Modules\tests\Knowledgebase\Models\WikiDocTest:testTagInputOutput' => ['description' => 'A tag can be correctly added and returned', 'type' => 'module'],2226 'Modules\tests\Knowledgebase\Models\WikiDocMapperTest' => ['description' => 'Wiki document mapper', 'type' => 'module'],2227 'Modules\tests\Knowledgebase\Models\WikiDocMapperTest:testCR' => ['description' => 'The model can be created and read from the database', 'type' => 'module'],2228 'jsOMS\tests\UI\Component\FormTest' => ['description' => 'Form manager', 'type' => 'framework'],2229];...

Full Screen

Full Screen

StringUtilsTest.php

Source:StringUtilsTest.php Github

copy

Full Screen

...28 public function testRtrimKeepNewlines(): void29 {30 self::assertSame(self::WHITESPACE . self::CUCUMBER . "\n", StringUtils::rtrimKeepNewLines(self::WHITESPACE . self::CUCUMBER . "\n". self::WHITESPACE));31 }32 public function testLtrim(): void33 {34 self::assertSame(self::CUCUMBER . self::WHITESPACE, StringUtils::ltrim(self::WHITESPACE . self::CUCUMBER . self::WHITESPACE));35 }36 public function testLtrimKeepNewlines(): void37 {38 self::assertSame("\n" . self::CUCUMBER . self::WHITESPACE, StringUtils::ltrimKeepNewLines(self::WHITESPACE . "\n" . self::CUCUMBER . self::WHITESPACE));39 }40 public function testTrim(): void41 {42 self::assertSame(self::CUCUMBER, StringUtils::trim(self::WHITESPACE . self::CUCUMBER . self::WHITESPACE));43 }44 public function testSymbolsList(): void45 {46 self::assertSame([self::APPLE, self::CUCUMBER, self::BANANA], StringUtils::symbolsList(self::APPLE . self::CUCUMBER . self::BANANA));47 }48}...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cucumber Common Library automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Trigger testLtrim code on LambdaTest Cloud Grid

Execute automation tests with testLtrim on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.

Test now for Free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful