rusefi-1/unit_tests/tests/test_parameters.h

20 lines
317 B
C
Raw Normal View History

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);
float get(string key) const;
};