mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-05 06:25:16 +00:00
20 lines
357 B
C++
20 lines
357 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();
|
|
void FirmwareComparison();
|
|
void ImpedanceSparameterCalculation();
|
|
};
|
|
|
|
#endif // UTILTESTS_H
|