X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=test%2Fview%2Fruler.cpp;h=5cef38d5ce20211c1ca8e329ca8e05f0a62629a1;hb=660ae94db9c8a2ad84d3235437d74bb7747af5f7;hp=37b8d3826cbdc4ad845b8b7c1c7632019bf269cc;hpb=5955ebeeaca4fc0beb88cbac401052ddc143e80b;p=pulseview.git diff --git a/test/view/ruler.cpp b/test/view/ruler.cpp index 37b8d382..5cef38d5 100644 --- a/test/view/ruler.cpp +++ b/test/view/ruler.cpp @@ -14,17 +14,16 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#include #include +#include -#include "pv/view/ruler.hpp" +#include "pv/views/trace/ruler.hpp" #include "test/test.hpp" -using namespace pv::views::TraceView; +using namespace pv::views::trace; namespace { QString format(const pv::util::Timestamp& t) @@ -43,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); + const TickPositions ts = Ruler::calculate_tick_positions( + major_period, offset, scale, width, minor_tick_count, format); BOOST_REQUIRE_EQUAL(ts.major.size(), 6); @@ -89,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); + const TickPositions ts = Ruler::calculate_tick_positions( + major_period, offset, scale, width, minor_tick_count, format); BOOST_REQUIRE_EQUAL(ts.major.size(), 5); @@ -133,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); + const TickPositions ts = Ruler::calculate_tick_positions( + major_period, offset, scale, width, minor_tick_count, format); const double mp = 5; const int off = 8;