Blang/tests/libblang/TranslationUnitTest.hpp

20 lines
357 B
C++
Raw Permalink Normal View History

2016-04-22 21:46:31 +02:00
#ifndef TRANSLATIONUNITTEST_HPP
#define TRANSLATIONUNITTEST_HPP
#include <string>
#include <vector>
#include <cppunit/extensions/HelperMacros.h>
class TranslationUnitTest : public CppUnit::TestFixture
{
public:
CPPUNIT_TEST_SUITE( TranslationUnitTest );
CPPUNIT_TEST( splitFileTest );
CPPUNIT_TEST_SUITE_END();
void splitFileTest();
};
#endif