Tempo ramps - make ramp test more challenging.
[ardour.git] / libs / ardour / test / jack_utils_test.h
1
2 #include <cppunit/TestFixture.h>
3 #include <cppunit/extensions/HelperMacros.h>
4
5 class JackUtilsTest : public CppUnit::TestFixture
6 {
7         CPPUNIT_TEST_SUITE (JackUtilsTest);
8         CPPUNIT_TEST (test_driver_names);
9         CPPUNIT_TEST (test_device_names);
10         CPPUNIT_TEST (test_samplerates);
11         CPPUNIT_TEST (test_period_sizes);
12         CPPUNIT_TEST (test_dither_modes);
13         CPPUNIT_TEST (test_connect_server);
14         CPPUNIT_TEST (test_set_jack_path_env);
15         CPPUNIT_TEST (test_server_paths);
16         CPPUNIT_TEST (test_config);
17         CPPUNIT_TEST (test_command_line);
18         CPPUNIT_TEST_SUITE_END ();
19
20 public:
21         void test_driver_names ();
22         void test_device_names ();
23         void test_samplerates ();
24         void test_period_sizes ();
25         void test_dither_modes ();
26         void test_connect_server ();
27         void test_set_jack_path_env ();
28         void test_server_paths ();
29         void test_config ();
30         void test_command_line ();
31 };