Clean up test slightly.
authorCarl Hetherington <carl@carlh.net>
Fri, 9 Dec 2011 22:57:45 +0000 (22:57 +0000)
committerCarl Hetherington <carl@carlh.net>
Fri, 9 Dec 2011 22:57:45 +0000 (22:57 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10957 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/test/framewalk_to_beats_test.cc

index c5bd47b62a2e1ce00efe4fee919361df3b0de347..6aca63c6c1a36596000b449b50093d3cc3468587 100644 (file)
@@ -25,19 +25,19 @@ FramewalkToBeatsTest::singleTempoTest ()
 
        /* Walk 1 beats-worth of frames from beat 3 */
        double r = map.framewalk_to_beats (frames_per_beat * 2, frames_per_beat * 1);
-       CPPUNIT_ASSERT (r == 1);
+       CPPUNIT_ASSERT_EQUAL (r, 1.0);
 
        /* Walk 6 beats-worth of frames from beat 4 */
        r = map.framewalk_to_beats (frames_per_beat * 3, frames_per_beat * 6);
-       CPPUNIT_ASSERT (r == 6);
+       CPPUNIT_ASSERT_EQUAL (r, 6.0);
 
        /* Walk 1.5 beats-worth of frames from beat 3 */
        r = map.framewalk_to_beats (frames_per_beat * 2, frames_per_beat * 1.5);
-       CPPUNIT_ASSERT (r == 1.5);
+       CPPUNIT_ASSERT_EQUAL (r, 1.5);
 
        /* Walk 1.5 beats-worth of frames from beat 2.5 */
        r = map.framewalk_to_beats (frames_per_beat * 2.5, frames_per_beat * 1.5);
-       CPPUNIT_ASSERT (r == 1.5);
+       CPPUNIT_ASSERT_EQUAL (r, 1.5);
 }
 
 void
@@ -76,22 +76,22 @@ FramewalkToBeatsTest::doubleTempoTest ()
 
        /* Walk 1 beat from 1.2 */
        double r = map.framewalk_to_beats (24e3, 24e3);
-       assert (r == 1);
+       CPPUNIT_ASSERT_EQUAL (r, 1.0);
 
        /* Walk 2 beats from 3.3 to 4.1 (over the tempo change) */
        r = map.framewalk_to_beats (264e3, (24e3 + 12e3));
-       assert (r == 2);
+       CPPUNIT_ASSERT_EQUAL (r, 2.0);
 
        /* Walk 2.5 beats from 3.3-and-a-half to 4.2 (over the tempo change) */
        r = map.framewalk_to_beats (264e3 - 12e3, (24e3 + 12e3 + 12e3));
-       assert (r == 2.5);
+       CPPUNIT_ASSERT_EQUAL (r, 2.5);
 
-       /* Walk 3 beats from 3.3-and-a-half to 4.2-and-a-half (over the tempo change) */
+       /* Walk 3 beats from 3.4-and-a-half to 4.3-and-a-half (over the tempo change) */
        r = map.framewalk_to_beats (264e3 - 12e3, (24e3 + 12e3 + 12e3 + 6e3));
-       assert (r == 3);
+       CPPUNIT_ASSERT_EQUAL (r, 3.0);
 
-       /* Walk 3.5 beats from 3.3-and-a-half to 4.3 (over the tempo change) */
+       /* Walk 3.5 beats from 3.4-and-a-half to 4.4 (over the tempo change) */
        r = map.framewalk_to_beats (264e3 - 12e3, (24e3 + 12e3 + 12e3 + 12e3));
-       assert (r == 3.5);
+       CPPUNIT_ASSERT_EQUAL (r, 3.5);
 }