to be very similar to the BMimeType::Sniffer tests... :-) These tests have the added bonus of not need full BMimeType/Registrar functionality, though. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@534 a95241bf-73f2-0310-859d-f6bbb57e9c96
26 lines
560 B
C++
26 lines
560 B
C++
// ParserTest.h
|
|
|
|
#ifndef __sk_parser_test_h__
|
|
#define __sk_parser_test_h__
|
|
|
|
#include <TestCase.h>
|
|
|
|
class ParserTest : public BTestCase {
|
|
public:
|
|
static CppUnit::Test* Suite();
|
|
|
|
//------------------------------------------------------------
|
|
// Test functions
|
|
//------------------------------------------------------------
|
|
void ScannerTest();
|
|
void ParserEngineTest();
|
|
|
|
//------------------------------------------------------------
|
|
// Helper functions
|
|
//------------------------------------------------------------
|
|
|
|
};
|
|
|
|
|
|
#endif // __sk_parser_test_h__
|