X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fratio_test.cc;h=a21859049823cb9cc07db48ed223b4d0c53a8623;hb=865316f0129c85cdd0248b87502fe97dec94b3f0;hp=c56906348344d4a6434406d4091b9bb520d847f2;hpb=3828baf56467224f5d44049bf1e7a7ed11f43a05;p=dcpomatic.git diff --git a/test/ratio_test.cc b/test/ratio_test.cc index c56906348..a21859049 100644 --- a/test/ratio_test.cc +++ b/test/ratio_test.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2012-2014 Carl Hetherington + Copyright (C) 2012-2021 Carl Hetherington This file is part of DCP-o-matic. @@ -19,7 +19,8 @@ */ /** @file test/ratio_test.cc - * @brief Test Ratio and fit_ratio_within(). + * @brief Test Ratio class and fit_ratio_within(). + * @ingroup selfcontained */ #include @@ -27,13 +28,12 @@ #include #include "lib/ratio.h" #include "lib/util.h" +#include "test.h" using std::ostream; BOOST_AUTO_TEST_CASE (ratio_test) { - Ratio::setup_ratios (); - Ratio const * r = Ratio::from_id ("119"); BOOST_CHECK (r); BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080)), dcp::Size (1290, 1080)); @@ -62,8 +62,14 @@ BOOST_AUTO_TEST_CASE (ratio_test) BOOST_CHECK (r); BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080)), dcp::Size (2048, 858)); - r = Ratio::from_id ("full-frame"); + r = Ratio::from_id ("190"); BOOST_CHECK (r); BOOST_CHECK_EQUAL (fit_ratio_within (r->ratio(), dcp::Size (2048, 1080)), dcp::Size (2048, 1080)); } + +BOOST_AUTO_TEST_CASE (ratios_use_same_pointers_test) +{ + auto const test = Ratio::from_id ("119"); + BOOST_CHECK_EQUAL (test, Ratio::from_id("119")); +}