diff --git a/test/basic/operators.cpp b/test/basic/operators.cpp index 0734aef..4a81d07 100644 --- a/test/basic/operators.cpp +++ b/test/basic/operators.cpp @@ -28,4 +28,27 @@ TTS_CASE("Check operator*") a *= 10.5; TTS_EQUAL(a, ref); +}; + +TTS_CASE("Check operator matrix + matrix") +{ + rotgen::matrix mat1(3,4); + rotgen::matrix mat2(3,4); + rotgen::matrix mat_sum(3,4); + + for(std::size_t r=0;r