Adjust unit tests

This commit is contained in:
Soeren Apel 2018-02-06 19:28:37 +01:00
parent 4a07615736
commit 866431680f
1 changed files with 6 additions and 3 deletions

View File

@ -42,9 +42,10 @@ BOOST_AUTO_TEST_CASE(tick_position_test_0)
const pv::util::Timestamp offset("0");
const double scale(0.001);
const int width(500);
const unsigned int minor_tick_count(4);
const Ruler::TickPositions ts = Ruler::calculate_tick_positions(
major_period, offset, scale, width, format);
major_period, offset, scale, width, minor_tick_count, format);
BOOST_REQUIRE_EQUAL(ts.major.size(), 6);
@ -88,9 +89,10 @@ BOOST_AUTO_TEST_CASE(tick_position_test_1)
const pv::util::Timestamp offset("-0.463");
const double scale(0.001);
const int width(500);
const unsigned int minor_tick_count(4);
const Ruler::TickPositions ts = Ruler::calculate_tick_positions(
major_period, offset, scale, width, format);
major_period, offset, scale, width, minor_tick_count, format);
BOOST_REQUIRE_EQUAL(ts.major.size(), 5);
@ -132,9 +134,10 @@ BOOST_AUTO_TEST_CASE(tick_position_test_2)
const pv::util::Timestamp offset("8");
const double scale(0.129746);
const int width(580);
const unsigned int minor_tick_count(4);
const Ruler::TickPositions ts = Ruler::calculate_tick_positions(
major_period, offset, scale, width, format);
major_period, offset, scale, width, minor_tick_count, format);
const double mp = 5;
const int off = 8;