| 60 | {} |
| 61 | |
| 62 | static std::string set(const std::string& schemaName, const Unit unit, const double value) // NOLINT |
| 63 | { |
| 64 | UnitsApi::setSchema(schemaName); |
| 65 | const auto quantity = Quantity {value, unit}; |
| 66 | return quantity.getSafeUserString(); |
| 67 | } |
| 68 | |
| 69 | static std::string setWithPrecision( |
| 70 | const std::string& name, |
no test coverage detected