source: molecuilder/src/unittests/ParserUnitTest.hpp@ f2efcf

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

the XYZ parser

  • Property mode set to 100644
File size: 474 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_SUITE_END();
18
19public:
20 void setUp();
21 void tearDown();
22
23 void rewriteAnXyzTest();
24};
25
26#endif /* PARSERUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.