Engauge Digitizer  2
TestMatrix.h
1 #ifndef TEST_MATRIX_H
2 #define TEST_MATRIX_H
3 
4 #include "Matrix.h"
5 #include <QObject>
6 
8 class TestMatrix : public QObject
9 {
10  Q_OBJECT
11 public:
13  explicit TestMatrix(QObject *parent = 0);
14 
15 signals:
16 
17 private 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 
30 private:
31 
32 };
33 
34 #endif // TEST_MATRIX_H
TestMatrix(QObject *parent=0)
Single constructor.
Definition: TestMatrix.cpp:9
Unit tests of matrix.
Definition: TestMatrix.h:8