mirror of
https://github.com/jankae/LibreVNA.git
synced 2025-12-06 07:12:10 +01:00
20 lines
264 B
C++
20 lines
264 B
C++
#ifndef FFTTESTS_H
|
|
#define FFTTESTS_H
|
|
|
|
#include <QtTest>
|
|
|
|
class fftTests : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
fftTests();
|
|
|
|
private slots:
|
|
void fft();
|
|
void fftAndIfft();
|
|
void ifftAndFft();
|
|
void fftAndIfftWithShift();
|
|
};
|
|
|
|
#endif // FFTTESTS_H
|