source: molecuilder/src/unittests/ParserUnitTest.hpp@ 2704e2

Last change on this file since 2704e2 was 2704e2, checked in by Saskia Metzler <metzler@…>, 16 years ago

WIP tremolo parser

  • Property mode set to 100644
File size: 542 bytes
Line 
1/*
2 * ParserUnitTest.hpp
3 *
4 * Created on: Mar 3, 2010
5 * Author: metzler
6 */
7#ifndef PARSERUNITTEST_HPP_
8#define PARSERUNITTEST_HPP_
9
10#include <cppunit/extensions/HelperMacros.h>
11#include <string>
12
13class ParserUnitTest : public CppUnit::TestFixture
14{
15 CPPUNIT_TEST_SUITE( ParserUnitTest ) ;
16 CPPUNIT_TEST ( rewriteAnXyzTest );
17 CPPUNIT_TEST ( rewriteTremoloTest );
18 CPPUNIT_TEST_SUITE_END();
19
20public:
21 void setUp();
22 void tearDown();
23
24 void rewriteAnXyzTest();
25 void rewriteTremoloTest();
26};
27
28#endif /* PARSERUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.