Minor tweaks around formatting, comments, renaming, warnings

This commit is contained in:
Klaus Basan
2014-04-21 11:28:17 +02:00
parent 54e8c6c4d0
commit 2fd80694a6
7 changed files with 45 additions and 65 deletions

View File

@@ -12,31 +12,24 @@
namespace BlackMiscTest
{
/*!
* \brief Vector and Matrix classes tests
*/
class CTestVectorMatrix : public QObject
{
Q_OBJECT
public:
/*!
* \brief Standard test case constructor
* \param parent
* \brief Vector and Matrix classes tests
*/
explicit CTestVectorMatrix(QObject *parent = 0) : QObject(parent) {}
class CTestVectorMatrix : public QObject
{
Q_OBJECT
private slots:
/*!
* \brief Basic unit tests for physical units
*/
void vectorBasics();
public:
//! Standard test case constructor
explicit CTestVectorMatrix(QObject *parent = nullptr) : QObject(parent) {}
/*!
* \brief Vertical positions
*/
void matrixBasics();
};
private slots:
//! Vector tests
void vectorBasics();
//! Matrix tests
void matrixBasics();
};
} // namespace