| 395 | } |
| 396 | |
| 397 | void DatapickerTest::mapCartesianToLnXY() { |
| 398 | DatapickerImage::ReferencePoints points; |
| 399 | points.type = DatapickerImage::GraphType::LnXY; |
| 400 | QPointF point{5, 2.23}; |
| 401 | |
| 402 | Transform t; |
| 403 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(exp(5), exp(2.23), 0)); |
| 404 | } |
| 405 | |
| 406 | void DatapickerTest::mapCartesianToLog10X() { |
| 407 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected