Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Utils / Beeper.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2010
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief Beeper unit tests */
25
26 // Custom includes
27 #include "Beeper.hh"
28 #include <senf/Scheduler/Scheduler.hh>
29
30 #include <senf/Utils/auto_unit_test.hh>
31 #include <boost/test/test_tools.hpp>
32
33 #define prefix_
34 //-/////////////////////////////////////////////////////////////////////////////////////////////////
35
36 SENF_AUTO_UNIT_TEST(beep_beep)
37 {
38     char const * enabled (getenv("SENF_BEEPER_TEST"));
39     BOOST_WARN_MESSAGE(enabled, "Set SENF_BEEPER_TEST to run the Beeper unit test");
40     if (! enabled)
41         return;
42
43     senf::Beeper myBeeper;
44     myBeeper.beep_sync(440.0, 200);
45     myBeeper.beep_sync(300.7, 400, 2, 100);
46
47     sleep( 1);
48
49     senf::scheduler::TimerEvent timer (
50             "Beeper unit test timer", &senf::scheduler::terminate,
51             senf::ClockService::now() + senf::ClockService::seconds(2));
52
53     myBeeper.beep_async(300.7, 400, 2, 100);
54     senf::scheduler::process();
55 }
56
57 //-/////////////////////////////////////////////////////////////////////////////////////////////////
58 #undef prefix_
59
60 \f
61 // Local Variables:
62 // mode: c++
63 // fill-column: 100
64 // c-file-style: "senf"
65 // indent-tabs-mode: nil
66 // ispell-local-dictionary: "american"
67 // compile-command: "scons -u test"
68 // comment-column: 40
69 // End: