| 413 | } |
| 414 | |
| 415 | void DatapickerTest::mapCartesianToLog10Y() { |
| 416 | DatapickerImage::ReferencePoints points; |
| 417 | points.type = DatapickerImage::GraphType::Log10Y; |
| 418 | QPointF point{5, 2.23}; |
| 419 | |
| 420 | Transform t; |
| 421 | VECTOR3D_EQUAL(t.mapCartesianToType(point, points), QVector3D(5, pow(10, 2.23), 0)); |
| 422 | } |
| 423 | |
| 424 | void DatapickerTest::mapCartesianToLog10XY() { |
| 425 | DatapickerImage::ReferencePoints points; |
nothing calls this directly
no test coverage detected