/[svn]/libgig/trunk/src/testcases/GigWriteTest.h
ViewVC logotype

Annotation of /libgig/trunk/src/testcases/GigWriteTest.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 917 - (hide annotations) (download) (as text)
Sun Aug 20 14:50:36 2006 UTC (17 years, 7 months ago) by schoenebeck
File MIME type: text/x-c++hdr
File size: 765 byte(s)
* added CPPUnit test cases (at the moment primarily for automatic check
  of Gigasampler write support)

1 schoenebeck 917 #ifndef __LIBGIG_GIGWRITETEST_H__
2     #define __LIBGIG_GIGWRITETEST_H__
3    
4     #include <cppunit/TestFixture.h>
5     #include <cppunit/extensions/HelperMacros.h>
6    
7     class GigWriteTest : public CppUnit::TestFixture {
8    
9     CPPUNIT_TEST_SUITE(GigWriteTest);
10     CPPUNIT_TEST(printTestSuiteName);
11     CPPUNIT_TEST(createNewGigFile);
12     CPPUNIT_TEST(testOpenCreatedGigFile);
13     CPPUNIT_TEST(testArticulationsOfCreatedGigFile);
14     CPPUNIT_TEST(testWriteSamples);
15     CPPUNIT_TEST_SUITE_END();
16    
17     public:
18     void setUp();
19     void tearDown();
20    
21     void printTestSuiteName();
22    
23     void createNewGigFile();
24     void testOpenCreatedGigFile();
25     void testArticulationsOfCreatedGigFile();
26     void testWriteSamples();
27     };
28    
29     #endif // __LIBGIG_GIGWRITETEST_H__

  ViewVC Help
Powered by ViewVC