19 lines
283 B
C
19 lines
283 B
C
![]() |
#ifndef UTILTESTS_H
|
||
|
#define UTILTESTS_H
|
||
|
|
||
|
#include <QtTest>
|
||
|
|
||
|
class UtilTests : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
UtilTests();
|
||
|
|
||
|
private slots:
|
||
|
void IdealCircleApproximation();
|
||
|
void IdealArcApproximation();
|
||
|
void NoisyCircleApproximation();
|
||
|
};
|
||
|
|
||
|
#endif // UTILTESTS_H
|