From 866431680fdd701bfbfa5c128d7b116ea8d7d34d Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Tue, 6 Feb 2018 19:28:37 +0100 Subject: [PATCH 1/1] Adjust unit tests --- test/view/ruler.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/test/view/ruler.cpp b/test/view/ruler.cpp index 37ba9c86..3984e973 100644 --- a/test/view/ruler.cpp +++ b/test/view/ruler.cpp @@ -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; -- 2.30.2