| 55 | } // namespace |
| 56 | |
| 57 | UNIT_TEST(ScaleChartData_Test) |
| 58 | { |
| 59 | vector<double> chartData = {0.0, -1.0, 2.0}; |
| 60 | maps::ScaleChartData(chartData, 2.0 /* scale */); |
| 61 | vector<double> const expectedChartData = {0.0, -2.0, 4.0}; |
| 62 | TEST_EQUAL(chartData, expectedChartData, ()); |
| 63 | } |
| 64 | |
| 65 | UNIT_TEST(ShiftChartData_Test) |
| 66 | { |
nothing calls this directly
no test coverage detected