mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-03-01 19:03:49 +01:00
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
|