| 386 | } |
| 387 | |
| 388 | void DatapickerTest::mapCartesianToLnY() { |
| 389 | DatapickerImage::ReferencePoints points; |
| 390 | points.type = DatapickerImage::GraphType::LnY; |
| 391 | QPointF point{5, 2.23}; |
| 392 | |
| 393 | Transform t; |
| 394 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(5, exp(2.23), 0)); |
| 395 | } |
| 396 | |
| 397 | void DatapickerTest::mapCartesianToLnXY() { |
| 398 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected