mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-18 14:58:40 +00:00
add tests and fix descriptions
This commit is contained in:
parent
e82c6cca9e
commit
d5884ea49b
|
|
@ -595,7 +595,11 @@ return [
|
|||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlDelete' => ['description' => 'Mysql deletes form a valid query', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testMysqlUpdate' => ['description' => 'Mysql updates form a valid query', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testRawInputOutput' => ['description' => 'Raw queries get output as defined', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRaw' => ['description' => 'Read only queries don\'t allow drops', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawSelect' => ['description' => 'Read only queries allow selects', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawDrop' => ['description' => 'Read only queries don\'t allow drops', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawDelete' => ['description' => 'Read only queries don\'t allow deletes', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawCreate' => ['description' => 'Read only queries don\'t allow creates', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyRawAlter' => ['description' => 'Read only queries don\'t allow modifications', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyInsert' => ['description' => 'Read only queries don\'t allow inserts', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyUpdate' => ['description' => 'Read only queries don\'t allow updates', 'type' => 'framework'],
|
||||
'phpOMS\tests\DataStorage\Database\Query\BuilderTest:testReadOnlyDelete' => ['description' => 'Read only queries don\'t allow deletes', 'type' => 'framework'],
|
||||
|
|
@ -1013,6 +1017,13 @@ return [
|
|||
'phpOMS\tests\Math\Topology\MetricsNDTest:testBrayCurtis' => ['description' => 'The bray-curtis distance can be calculated', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testAngularSeparation' => ['description' => 'The angular distance can be calculated', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testHammingDistance' => ['description' => 'The hamming distance can be calculated', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidManhattanDimension' => ['description' => 'Different dimension sizes for the coordinates in the manhattan metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidEuclideanDimension' => ['description' => 'Different dimension sizes for the coordinates in the euclidean metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidChebyshevDimension' => ['description' => 'Different dimension sizes for the coordinates in the chebyshev metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidMinkowskiDimension' => ['description' => 'Different dimension sizes for the coordinates in the minkowski metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidCanberraDimension' => ['description' => 'Different dimension sizes for the coordinates in the canberra metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidBrayCurtisDimension' => ['description' => 'Different dimension sizes for the coordinates in the Bray Curtis metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidAngularSeparationDimension' => ['description' => 'Different dimension sizes for the coordinates in the angular separation metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Topology\MetricsNDTest:testInvalidHammingDimension' => ['description' => 'Different dimension sizes for the coordinates in the hamming metric throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
|
||||
/** @todo Implement the stochhastics documentation **/
|
||||
|
|
@ -1081,6 +1092,7 @@ return [
|
|||
'phpOMS\tests\Math\Statistic\AverageTest:testGeometricMean' => ['description' => 'The geometic mean is calculated correctly', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Statistic\AverageTest:testHarmonicMean' => ['description' => 'The harmonic mean is calculated correctly', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Statistic\AverageTest:testMovingAverage' => ['description' => 'The moving average is calculated correctly', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Statistic\AverageTest:testWeightedMovingAverage' => ['description' => 'The weighted moving average is calculated correctly', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Statistic\AverageTest:testInvalidWeightedAverageDimension' => ['description' => 'Different weight and dataset dimensions throw a InvalidDimensionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Statistic\AverageTest:testInvalidArithmeticMeanZeroDivision' => ['description' => 'An empty dataset for the arithmetic mean throws a ZeroDivisionException', 'type' => 'framework'],
|
||||
'phpOMS\tests\Math\Statistic\AverageTest:testInvalidMovingAverageZeroDivision' => ['description' => 'An empty dataset for the moving average throws a Exception', 'type' => 'framework'],
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user