| 182 | } |
| 183 | |
| 184 | void test_matrix_function() |
| 185 | { |
| 186 | CALL_SUBTEST_1(testMatrixType(Matrix<float,1,1>())); |
| 187 | CALL_SUBTEST_2(testMatrixType(Matrix3cf())); |
| 188 | CALL_SUBTEST_3(testMatrixType(MatrixXf(8,8))); |
| 189 | CALL_SUBTEST_4(testMatrixType(Matrix2d())); |
| 190 | CALL_SUBTEST_5(testMatrixType(Matrix<double,5,5,RowMajor>())); |
| 191 | CALL_SUBTEST_6(testMatrixType(Matrix4cd())); |
| 192 | CALL_SUBTEST_7(testMatrixType(MatrixXd(13,13))); |
| 193 | } |
nothing calls this directly
no test coverage detected