This commit is contained in:
Dennis Eichhorn 2023-10-23 00:02:39 +00:00
parent 58120ac97d
commit ab5230b8bd

View File

@ -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();