]>
git.saurik.com Git - wxWidgets.git/blob - tests/events/stopwatch.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/events/stopwatch.cpp
3 // Purpose: Test wxStopWatch class
4 // Author: Francesco Montorsi (extracted from console sample)
7 // Copyright: (c) 2010 wxWidgets team
8 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
26 #include "wx/stopwatch.h"
29 // --------------------------------------------------------------------------
31 // --------------------------------------------------------------------------
33 class StopWatchTestCase
: public CppUnit::TestCase
36 StopWatchTestCase() {}
39 CPPUNIT_TEST_SUITE( StopWatchTestCase
);
41 CPPUNIT_TEST( BackwardsClockBug
);
42 CPPUNIT_TEST_SUITE_END();
45 void BackwardsClockBug();
47 DECLARE_NO_COPY_CLASS(StopWatchTestCase
)
50 // register in the unnamed registry so that these tests are run by default
51 CPPUNIT_TEST_SUITE_REGISTRATION( StopWatchTestCase
);
53 // also include in its own registry so that these tests can be run alone
54 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( StopWatchTestCase
, "StopWatchTestCase" );
56 void StopWatchTestCase::Misc()
58 static const long tolerance
= 100; // in ms
63 sw
.Pause(); // pause it immediately
68 // check that the stop watch doesn't advance while paused
71 ("Actual time value is %ld", t
),
72 t
>= 0 && t
< tolerance
78 // check that it did advance now by ~3s
81 ("Actual time value is %ld", t
),
82 t
> 3000 - tolerance
&& t
< 3000 + tolerance
91 // and it should advance again
94 ("Actual time value is %ld", t
),
95 t
> 5000 - tolerance
&& t
< 5000 + tolerance
99 void StopWatchTestCase::BackwardsClockBug()
104 for ( size_t n
= 0; n
< 10; n
++ )
108 for ( size_t m
= 0; m
< 10000; m
++ )
110 CPPUNIT_ASSERT ( sw
.Time() >= 0 && sw2
.Time() >= 0 );