X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/d0adbf3d56cb2e95fae085700c3e305b134cbaf0..ce23bada2111a637074629161268ce1039d28a58:/tests/testsettings.h diff --git a/tests/testsettings.h b/tests/testsettings.h index 39ec62e2..20e26271 100644 --- a/tests/testsettings.h +++ b/tests/testsettings.h @@ -5,7 +5,7 @@ class TEST_SETTINGS : public SETTINGS { public: - TEST_SETTINGS() {} + TEST_SETTINGS() { filterParamsLog.push_back("*"); } const std::string & GetDirName(size_t) const { return dirName; } const std::string & GetScriptsDir() const { return scriptsDir; } @@ -21,13 +21,19 @@ class TEST_SETTINGS : public SETTINGS { bool GetShowFeeInCash() const { return false; } unsigned GetMessageTimeout() const { return 0; } unsigned GetFeeChargeType() const { return 0; } + bool GetReconnectOnTariffChange() const { return false; } const std::string & GetMonitorDir() const { return monitorDir; } bool GetMonitoring() const { return false; } + const std::vector & GetScriptParams() const { return scriptParams; } + bool GetDisableSessionLog() const { return false; } + const std::vector& GetFilterParamsLog() const { return filterParamsLog; } private: std::string dirName; std::string scriptsDir; std::string monitorDir; + std::vector scriptParams; + std::vector filterParamsLog; }; #endif