2019-01-17 19:59:17 -08:00
|
|
|
/*
|
|
|
|
* test_parameters.h
|
|
|
|
*
|
|
|
|
* Created on: Jan 17, 2019
|
2020-01-07 21:02:40 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2019-01-17 19:59:17 -08:00
|
|
|
*/
|
|
|
|
|
2020-04-01 18:32:21 -07:00
|
|
|
#pragma once
|
2019-01-17 19:59:17 -08:00
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
class TestParameters {
|
|
|
|
public:
|
|
|
|
unordered_map<string, float> values;
|
|
|
|
TestParameters* put(string key, float value);
|
2020-12-04 21:22:10 -08:00
|
|
|
float get(string key);
|
2019-01-17 19:59:17 -08:00
|
|
|
};
|
|
|
|
|