Engauge Digitizer 2
Loading...
Searching...
No Matches
TestMatrix.h
Go to the documentation of this file.
1#ifndef TEST_MATRIX_H
2#define TEST_MATRIX_H
3
4#include "Matrix.h"
5#include <QObject>
6
8class TestMatrix : public QObject
9{
11public:
13 explicit TestMatrix(QObject *parent = 0);
14
16
17private slots:
18 void cleanupTestCase ();
19 void initTestCase ();
20
21 void testDeterminant ();
22 void testInverse ();
23 void testInverse2 ();
24 void testMultiplyNonSquareMatrix ();
25 void testMultiplyNonSquareMatrixAndVector ();
26 void testMultiplySquareMatrix ();
27 void testMultiplySquareMatrixAndVector ();
28 void testTranspose ();
29
30private:
31
32};
33
34#endif // TEST_MATRIX_H
const int INNER_RADIUS_MIN
Unit tests of matrix.
Definition TestMatrix.h:9
TestMatrix(QObject *parent=0)
Single constructor.