From ab5230b8bd50cab23f0ed0ededa05f73ae4dfcd7 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Mon, 23 Oct 2023 00:02:39 +0000 Subject: [PATCH] bump --- tests/Math/Matrix/MatrixTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Math/Matrix/MatrixTest.php b/tests/Math/Matrix/MatrixTest.php index 01e0fe8a2..56641be22 100755 --- a/tests/Math/Matrix/MatrixTest.php +++ b/tests/Math/Matrix/MatrixTest.php @@ -493,6 +493,10 @@ final class MatrixTest extends \PHPUnit\Framework\TestCase $A->mult($B); } + /** + * @covers phpOMS\Math\Matrix\Matrix + * @group framework + */ public function testDotVectors() : void { $v1 = Vector::fromArray([1, 3, -5])->transpose();