mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
22 lines
424 B
C++
22 lines
424 B
C++
#ifndef IMPEDANCERENORMALIZATIONTESTS_H
|
|
#define IMPEDANCERENORMALIZATIONTESTS_H
|
|
|
|
#include <QtTest>
|
|
|
|
#include "impedancerenormalization.h"
|
|
|
|
class ImpedanceRenormalizationTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ImpedanceRenormalizationTests();
|
|
~ImpedanceRenormalizationTests();
|
|
private slots:
|
|
void OnePortTests();
|
|
|
|
private:
|
|
ImpedanceRenormalization *renorm;
|
|
};
|
|
|
|
#endif // IMPEDANCERENORMALIZATIONTESTS_H
|