LibreVNA/Software/PC_Application/LibreVNA-Test/portextensiontests.h
2023-01-16 00:25:29 +01:00

22 lines
365 B
C++

#ifndef PORTEXTENSIONTESTS_H
#define PORTEXTENSIONTESTS_H
#include <QObject>
#include "portextension.h"
class PortExtensionTests : public QObject
{
Q_OBJECT
public:
explicit PortExtensionTests();
private slots:
void autocalc();
void correct();
private:
std::vector<DeviceDriver::VNAMeasurement> dummyData;
};
#endif // PORTEXTENSIONTESTS_H