mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
19 lines
290 B
C++
19 lines
290 B
C++
#ifndef CALIBRATIONTESTS_H
|
|
#define CALIBRATIONTESTS_H
|
|
|
|
#include <QtTest>
|
|
|
|
class CalibrationTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CalibrationTests();
|
|
|
|
private slots:
|
|
void LinearDetection();
|
|
void LogDetection();
|
|
void MixedDetection();
|
|
};
|
|
|
|
#endif // CALIBRATIONTESTS_H
|