| 377 | } |
| 378 | |
| 379 | void DatapickerTest::mapCartesianToLnX() { |
| 380 | DatapickerImage::ReferencePoints points; |
| 381 | points.type = DatapickerImage::GraphType::LnX; |
| 382 | QPointF point{5, 2343.23}; |
| 383 | |
| 384 | Transform t; |
| 385 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(exp(5), 2343.23f, 0)); |
| 386 | } |
| 387 | |
| 388 | void DatapickerTest::mapCartesianToLnY() { |
| 389 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected