diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_pcm_all.hxx | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/test/test_pcm_all.hxx b/test/test_pcm_all.hxx index 7cdd8b63f..fd08ec451 100644 --- a/test/test_pcm_all.hxx +++ b/test/test_pcm_all.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2014 The Music Player Daemon Project + * Copyright (C) 2003-2015 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -103,6 +103,23 @@ public: void TestMix32(); }; +class PcmInterleaveTest : public CppUnit::TestFixture { + CPPUNIT_TEST_SUITE(PcmInterleaveTest); + CPPUNIT_TEST(TestInterleave8); + CPPUNIT_TEST(TestInterleave16); + CPPUNIT_TEST(TestInterleave24); + CPPUNIT_TEST(TestInterleave32); + CPPUNIT_TEST(TestInterleave64); + CPPUNIT_TEST_SUITE_END(); + +public: + void TestInterleave8(); + void TestInterleave16(); + void TestInterleave24(); + void TestInterleave32(); + void TestInterleave64(); +}; + class PcmExportTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE(PcmExportTest); CPPUNIT_TEST(TestShift8); |