| 218 | } |
| 219 | |
| 220 | QString parseQuantity(const std::string& value) |
| 221 | { |
| 222 | auto quantity = Base::Quantity::parse(value); |
| 223 | quantity.setFormat(Materials::MaterialValue::getQuantityFormat()); |
| 224 | return QString::fromStdString(quantity.getUserString()); |
| 225 | } |
| 226 | |
| 227 | TEST_F(TestMaterial, TestCalculiXSteel) |
| 228 | { |
no test coverage detected