X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=test%2Fview%2Fruler.cpp;h=3984e973aa026af34fc8a3cfa1b66ce85eea3b50;hb=866431680fdd701bfbfa5c128d7b116ea8d7d34d;hp=400f845e52e3aeba85e2fd07ea8aabbf4f089372;hpb=c677193dc6e691493081fe87476a04e1674093a5;p=pulseview.git diff --git a/test/view/ruler.cpp b/test/view/ruler.cpp index 400f845..3984e97 100644 --- a/test/view/ruler.cpp +++ b/test/view/ruler.cpp @@ -14,22 +14,21 @@ * 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::view; +using namespace pv::views::trace; namespace { QString format(const pv::util::Timestamp& t) { - return pv::util::format_si_value(t, "s", pv::util::SIPrefix::none, 6); + return pv::util::format_time_si(t, pv::util::SIPrefix::none, 6); } const double e = 0.0001; @@ -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); + 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); + 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); + major_period, offset, scale, width, minor_tick_count, format); const double mp = 5; const int off = 8;