mirror of https://github.com/probonopd/MiniDexed
parent
c6f93e6dbb
commit
68e2a887c6
@ -1,4 +0,0 @@ |
||||
[ViewState] |
||||
Mode= |
||||
Vid= |
||||
FolderType=Generic |
@ -1,44 +0,0 @@ |
||||
#include "test_fixture.h" |
||||
|
||||
#include <iomanip> |
||||
#include <iostream> |
||||
#include <sstream> |
||||
#include <locale> |
||||
#include <random> |
||||
#include <string> |
||||
|
||||
void setupOuputStreamFocCSV(std::ostream& out) |
||||
{ |
||||
struct comma_separator : numpunct<char> |
||||
{ |
||||
virtual char do_decimal_point() const override { return ','; } |
||||
}; |
||||
|
||||
out.imbue(locale(out.getloc(), new comma_separator)); |
||||
out << fixed << showpoint; |
||||
} |
||||
|
||||
FxComponentFixture::FxComponentFixture() : |
||||
testing::Test(), |
||||
gen_(rd_()), |
||||
dist_(-1.0f, 1.0f) |
||||
{ |
||||
} |
||||
|
||||
void FxComponentFixture::SetUp() |
||||
{ |
||||
} |
||||
|
||||
void FxComponentFixture::TearDown() |
||||
{ |
||||
} |
||||
|
||||
string FxComponentFixture::getResultFile(const std::string& filename) |
||||
{ |
||||
return std::string(STR(OUTPUT_FOLDER)) + "/" + filename; |
||||
} |
||||
|
||||
float32_t FxComponentFixture::getRandomValue() |
||||
{ |
||||
return this->dist_(this->gen_); |
||||
} |
@ -1,32 +0,0 @@ |
||||
#pragma once |
||||
|
||||
#include <gtest/gtest.h> |
||||
|
||||
#include <iomanip> |
||||
#include <iostream> |
||||
#include <locale> |
||||
#include <random> |
||||
#include <string> |
||||
|
||||
#include "../fx.h" |
||||
|
||||
#define STR(x) #x |
||||
|
||||
void setupOuputStreamFocCSV(std::ostream& out); |
||||
|
||||
class FxComponentFixture : public testing::Test |
||||
{ |
||||
public: |
||||
FxComponentFixture(); |
||||
|
||||
virtual void SetUp() override; |
||||
virtual void TearDown() override; |
||||
|
||||
std::string getResultFile(const string& filename); |
||||
|
||||
float32_t getRandomValue(); |
||||
|
||||
random_device rd_; |
||||
mt19937 gen_; |
||||
uniform_real_distribution<float32_t> dist_; |
||||
}; |
Loading…
Reference in new issue