~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/test/tempo_test.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <sigc++/sigc++.h>
 
2
#include <cppunit/TestFixture.h>
 
3
#include <cppunit/extensions/HelperMacros.h>
 
4
 
 
5
class TempoTest : public CppUnit::TestFixture
 
6
{
 
7
        CPPUNIT_TEST_SUITE (TempoTest);
 
8
        CPPUNIT_TEST (recomputeMapTest);
 
9
        CPPUNIT_TEST_SUITE_END ();
 
10
 
 
11
public:
 
12
        void setUp () {}
 
13
        void tearDown () {}
 
14
 
 
15
        void recomputeMapTest ();
 
16
};
 
17